You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-15 22:22:17 +03:00
8 lines
334 B
SQL
8 lines
334 B
SQL
drop table if exists bug2790;
|
|
create table bug2790 ( a bigint, b varchar(32), c date, d varchar(32), e varchar(32) ) engine=infinidb;
|
|
# Expected result of the load data infile is:
|
|
# ERROR 122 (HY000) at line 3: The syntax '\0' is not supported by InfiniDB.
|
|
load data infile '/tmp/bug2790.tbl' into table bug2790;
|
|
drop table bug2790;
|
|
|