mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
57f61c954c
* Fix some tests * Fix tests
6 lines
195 B
SQL
6 lines
195 B
SQL
drop table if exists test_enum;
|
|
create table test_enum (c Nullable(Enum16('A' = 1, 'B' = 2))) engine Log;
|
|
insert into test_enum values (1), (NULL);
|
|
select * from test_enum;
|
|
drop table test_enum;
|