mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
6aa94ae032
In case of multiple writes File() engine will set doNotWritePrefix(), and this will avoid serializations initilization, move this to do this always. Fixes: #31004
7 lines
302 B
SQL
7 lines
302 B
SQL
DROP TABLE IF EXISTS table_MySQLWire;
|
|
CREATE TABLE table_MySQLWire (x UInt64) ENGINE = File(MySQLWire);
|
|
INSERT INTO table_MySQLWire SELECT number FROM numbers(10);
|
|
-- regression for not initializing serializations
|
|
INSERT INTO table_MySQLWire SELECT number FROM numbers(10);
|
|
DROP TABLE table_MySQLWire;
|