ClickHouse/tests/queries/0_stateless/02458_default_setting.sql
2022-10-08 11:07:46 +00:00

10 lines
445 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';
SELECT changed 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';
SELECT changed FROM system.settings where name='max_insert_block_size';