ClickHouse/tests/queries/0_stateless/02267_insert_empty_data.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
187 B
MySQL
Raw Normal View History

2022-04-17 05:42:07 +00:00
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;