mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 04:22:03 +00:00
5 lines
151 B
MySQL
5 lines
151 B
MySQL
|
drop table if exists t;
|
||
|
create table t (x Bool) engine=Memory();
|
||
|
insert into t values settings bool_true_representation='да' ('да');
|
||
|
drop table t;
|