| Server IP : 45.40.142.9 / Your IP : 216.73.216.250 Web Server : Apache System : Linux s45-40-142-9.secureserver.net 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : bayspec ( 506) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/mysql-test/suite/ndb/t/ |
Upload File : |
--disable_query_log
let $dump_file = $MYSQLTEST_VARDIR/tmp/desc.txt;
if (`select LENGTH('$show_varpart_table') = 0`)
{
# Default is to show properties of t1
let $show_varpart_table=t1;
}
# Dump the output of ndb_desc to file
--exec $NDB_DESC --no-defaults -d test $show_varpart_table > $dump_file
# Load the file into a temporary table
CREATE TEMPORARY TABLE test.desc (a varchar(512)) ENGINE = HEAP;
# needed for embedded
--chmod 0777 $dump_file
--replace_result $dump_file DUMP_FILE
eval LOAD DATA INFILE '$dump_file' INTO TABLE test.desc;
--remove_file $dump_file
# Query the temporary table
let $value = `SELECT TRIM(TRAILING "\r" FROM a) FROM test.desc
WHERE a LIKE BINARY "ForceVarPart%"`;
echo $value;
DROP TABLE test.desc;
--enable_query_log