summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-09-20 14:16:17 +0200
committerErich Eckner <git@eckner.net>2018-09-20 14:16:17 +0200
commit1563f91689b1307047f6cc139e8b9201e4870162 (patch)
tree7d583c9dc1d13e3bbed9c32e2549f606b303515d
parent206ec537c47bcdbef5895ec96cbaad89b668f637 (diff)
downloadbuilder-1563f91689b1307047f6cc139e8b9201e4870162.tar.xz
bin/build-master-status: mark the queries as unimportant
-rwxr-xr-xbin/build-master-status6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/build-master-status b/bin/build-master-status
index bad971d..5d84bb6 100755
--- a/bin/build-master-status
+++ b/bin/build-master-status
@@ -39,7 +39,7 @@ if [ -s "${tmp_dir}/todos" ]; then
# shellcheck disable=SC2016
{
printf 'SHOW CREATE TABLE `todos`' | \
- mysql_run_query | \
+ mysql_run_query 'unimportant' | \
sed '
1s/^\S\+\s\+CREATE TABLE `todos` /CREATE TEMPORARY TABLE `td` /
s/ NOT NULL AUTO_INCREMENT/ NULL/
@@ -92,7 +92,7 @@ if [ -s "${tmp_dir}/todos" ]; then
printf 'WHERE `todos`.`id`=`todo_links`.`dependent`'
printf ');\n'
} | \
- mysql_run_query
+ mysql_run_query 'unimportant'
fi
rm -f "${tmp_dir}/todos"
@@ -216,5 +216,5 @@ if [ ! -s "${work_dir}/build-master-sanity" ]; then
printf '))'
printf ');\n'
} | \
- mysql_run_query
+ mysql_run_query 'unimportant'
fi