mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 22:22:00 +00:00
8 lines
301 B
SQL
8 lines
301 B
SQL
-- Tags: no-parallel
|
|
|
|
SELECT value FROM system.settings where name='max_insert_block_size';
|
|
SET max_insert_block_size=100000;
|
|
SELECT value FROM system.settings where name='max_insert_block_size';
|
|
SET max_insert_block_size=DEFAULT;
|
|
SELECT value FROM system.settings where name='max_insert_block_size';
|