MOON
Server: Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4
System: Linux vps.panamaemb.org.sg 3.10.0-1160.80.1.vz7.191.4 #1 SMP Thu Dec 15 20:31:06 MSK 2022 x86_64
User: panama (500)
PHP: 5.2.17
Disabled: NONE
Upload Files
File: //usr/share/mysql-test/suite/ndb/t/show_attributes.inc
--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)) 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
--replace_regex /BT=NDB\$BLOB_[0-9]+_[0-9]+/BT=NDB$BLOB_#_#/
SELECT TRIM(TRAILING "\r" FROM a) as 'Attributes:' FROM test.desc
  WHERE a LIKE BINARY "%ST=%";

DROP TABLE test.desc;
--enable_query_log