summaryrefslogtreecommitdiff
path: root/mysql-test/include/maria_make_snapshot_for_comparison.inc
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/include/maria_make_snapshot_for_comparison.inc')
-rw-r--r--mysql-test/include/maria_make_snapshot_for_comparison.inc7
1 files changed, 4 insertions, 3 deletions
diff --git a/mysql-test/include/maria_make_snapshot_for_comparison.inc b/mysql-test/include/maria_make_snapshot_for_comparison.inc
index 71b821b5212..cb756f60527 100644
--- a/mysql-test/include/maria_make_snapshot_for_comparison.inc
+++ b/mysql-test/include/maria_make_snapshot_for_comparison.inc
@@ -1,10 +1,11 @@
# Maria helper script
# Copies clean tables' data and index file to other directory
-# Tables are t1...t[$mms_tables]
+# Tables are $mms_tname1...$mms_tname[$mms_tables]
# They are later used as a reference to see if recovery works.
# API:
-# set $mms_tables to N, the script will cover tables mysqltest.t1,...tN
+# set $mms_tname to a string, and $mms_tables to a number N, the script will
+# cover tables mysqltest.$mms_tname1,...$mms_tnameN
connection admin;
@@ -22,7 +23,7 @@ eval create database mysqltest_for_$mms_purpose;
while ($mms_table_to_use)
{
# to serve as a reference, table must be in a clean state
- eval flush table t$mms_table_to_use;
+ eval flush table $mms_tname$mms_table_to_use;
-- source include/maria_make_snapshot.inc
dec $mms_table_to_use;
}