mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
9 lines
335 B
SQL
Executable File
9 lines
335 B
SQL
Executable File
SET send_logs_level = 'none';
|
|
SET allow_ddl = 0;
|
|
|
|
CREATE DATABASE some_db; -- { serverError 392 }
|
|
CREATE TABLE some_table(a Int32) ENGINE = Memory; -- { serverError 392}
|
|
ALTER TABLE some_table DELETE WHERE 1; -- { serverError 392}
|
|
RENAME TABLE some_table TO some_table1; -- { serverError 392}
|
|
SET allow_ddl = 1; -- { serverError 392}
|