ClickHouse/tests/queries/0_stateless/02458_default_setting.sql
2022-12-13 12:48:14 +01: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';