config root man

Current Path : /home/usr.opt/mysql57/mysql-test/suite/ndb/t/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //home/usr.opt/mysql57/mysql-test/suite/ndb/t/show_varpart.inc

--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

Man Man