2 let $dump_file = $MYSQLTEST_VARDIR/tmp/ndb_show_tables.txt;
4 # Dump the output of ndb_show_tables to file
5 --exec $NDB_SHOW_TABLES --no-defaults --p > $dump_file
7 TRUNCATE ndb_show_tables_results;
10 --chmod 0777 $dump_file
11 eval LOAD DATA INFILE
'$dump_file'
12 INTO
TABLE ndb_show_tables_results;
13 --remove_file $dump_file
15 # Clean the last column "name" from any windows line endings
21 --echo ndb_show_tables completed.....