From 1563f91689b1307047f6cc139e8b9201e4870162 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Thu, 20 Sep 2018 14:16:17 +0200 Subject: bin/build-master-status: mark the queries as unimportant --- bin/build-master-status | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bin/build-master-status') 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 -- cgit v1.2.3-54-g00ecf