mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +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;
|