23 lines
636 B
SQL
23 lines
636 B
SQL
--disable_query_log
|
|
let $dump_file = $MYSQLTEST_VARDIR/tmp/desc.txt;
|
|
|
|
# Dump the output of ndb_desc to file
|
|
--exec $NDB_DESC --no-defaults -d test t1 > $dump_file
|
|
|
|
# Load the file into a temporary table
|
|
CREATE TEMPORARY TABLE test.desc (a varchar(512))
|
|
CHARSET latin1 ENGINE = HEAP;
|
|
|
|
--replace_result $dump_file DUMP_FILE
|
|
eval LOAD DATA INFILE '$dump_file' INTO TABLE test.desc;
|
|
--remove_file $dump_file
|
|
|
|
# Query the temporary table
|
|
SELECT TRIM(TRAILING "\r" FROM a) as 'Indexes:' FROM test.desc
|
|
WHERE a REGEXP "- (UniqueHashIndex|OrderedIndex)"
|
|
AND a NOT LIKE "PRIMARY KEY%"
|
|
ORDER BY a;
|
|
|
|
DROP TABLE test.desc;
|
|
--enable_query_log
|