2
DROP TABLE IF EXISTS t1;
5
# test file not existed
7
CREATE TABLE t1 (a INT) ENGINE=FILESYSTEM,FILE="../../../plugin/filesystem/tests/t/_FILE_NOT_EXISTED_";
9
# test col separator not empty
11
CREATE TABLE t1 (a INT) ENGINE=FILESYSTEM,FILE="../../../plugin/filesystem/tests/t/basic_create_table.data",COL_SEPARATOR="";
13
# test row separator not empty
15
CREATE TABLE t1 (a INT) ENGINE=FILESYSTEM,FILE="../../../plugin/filesystem/tests/t/basic_create_table.data",ROW_SEPARATOR="";
17
CREATE TABLE t1 (a INT) ENGINE=FILESYSTEM,FILE="../../../plugin/filesystem/tests/t/basic_create_table.data";
20
CREATE TABLE t1 (a INT) ENGINE=FILESYSTEM,FILE="../../../plugin/filesystem/tests/t/basic_create_table.data";