mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 16:42:05 +00:00
5 lines
151 B
SQL
5 lines
151 B
SQL
drop table if exists t;
|
|
create table t (x Bool) engine=Memory();
|
|
insert into t values settings bool_true_representation='да' ('да');
|
|
drop table t;
|