diff options
Diffstat (limited to 'mysql-test/main/anel_int.test')
-rw-r--r-- | mysql-test/main/anel_int.test | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/mysql-test/main/anel_int.test b/mysql-test/main/anel_int.test new file mode 100644 index 00000000000..370c312844a --- /dev/null +++ b/mysql-test/main/anel_int.test @@ -0,0 +1,17 @@ +let $datadir=`select @@datadir`; +drop table if exists mysql_json; + +--echo # +--echo # Mix of INT32 and UINT64 +--echo # + + + +# Make sure you have placed `json.[frm/myd/myi]` files in `source/mysql-test/std_data/` +--copy_file std_data/simple_ints_table_json_object.frm $datadir/test/mysql_json.frm +--copy_file std_data/simple_ints_table_json_object.MYI $datadir/test/mysql_json.MYI +--copy_file std_data/simple_ints_table_json_object.MYD $datadir/test/mysql_json.MYD + +# Now can read +select * from test.mysql_json; +drop table mysql_json; |