Commit c0d75a6d authored by Sergei Golubchik's avatar Sergei Golubchik

spider.show_system_tables: make the result stable

parent 6087e21d
......@@ -10,18 +10,18 @@ child3_3
Show system tables on the Spider node
connection master_1;
SELECT table_name, engine FROM information_schema.tables
WHERE table_schema = 'mysql' AND table_name like '%spider_%'
SELECT table_name, engine FROM information_schema.tables
WHERE table_schema = 'mysql' AND table_name like '%spider_%';
table_name engine
spider_xa_member Aria
spider_xa_failed_log Aria
spider_xa Aria
spider_tables Aria
spider_table_sts Aria
spider_table_position_for_recovery Aria
spider_table_crd Aria
spider_link_mon_servers Aria
spider_link_failed_log Aria
spider_link_mon_servers Aria
spider_table_crd Aria
spider_table_position_for_recovery Aria
spider_table_sts Aria
spider_tables Aria
spider_xa Aria
spider_xa_failed_log Aria
spider_xa_member Aria
deinit
for master_1
......
......@@ -9,12 +9,9 @@
--echo
--echo Show system tables on the Spider node
--connection master_1
--disable_query_log
echo SELECT table_name, engine FROM information_schema.tables
WHERE table_schema = 'mysql' AND table_name like '%spider_%';
eval SELECT table_name, engine FROM information_schema.tables
--sorted_result
SELECT table_name, engine FROM information_schema.tables
WHERE table_schema = 'mysql' AND table_name like '%spider_%';
--enable_query_log
--echo
--echo deinit
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment