mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-20 06:32:08 +00:00
12 lines
187 B
MySQL
12 lines
187 B
MySQL
|
DROP TABLE IF EXISTS t;
|
||
|
|
||
|
CREATE TABLE t (n UInt32) ENGINE=Memory;
|
||
|
|
||
|
INSERT INTO t VALUES; -- { clientError 108 }
|
||
|
|
||
|
set throw_if_no_data_to_insert = 0;
|
||
|
|
||
|
INSERT INTO t VALUES;
|
||
|
|
||
|
DROP TABLE t;
|