ClickHouse/tests/queries/0_stateless/02458_default_setting.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
445 B
MySQL
Raw Normal View History

2022-10-08 10:33:37 +00:00
-- 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';
2022-10-08 11:07:46 +00:00
SELECT changed FROM system.settings where name='max_insert_block_size';
2022-10-08 10:33:37 +00:00
SET max_insert_block_size=DEFAULT;
SELECT value FROM system.settings where name='max_insert_block_size';
2022-10-08 11:07:46 +00:00
SELECT changed FROM system.settings where name='max_insert_block_size';