DROP TABLE IF EXISTS t; CREATE TABLE t (n UInt32) ENGINE=Memory; INSERT INTO t VALUES; -- { clientError NO_DATA_TO_INSERT } set throw_if_no_data_to_insert = 0; INSERT INTO t VALUES; DROP TABLE t;