2021-04-14 16:35:17 +00:00
|
|
|
drop table if exists test_enum;
|
2021-02-24 06:45:14 +00:00
|
|
|
create table test_enum (c Nullable(Enum16('A' = 1, 'B' = 2))) engine Log;
|
|
|
|
insert into test_enum values (1), (NULL);
|
|
|
|
select * from test_enum;
|
2021-04-14 16:35:17 +00:00
|
|
|
drop table test_enum;
|