Skip to content

Commit a6d0d5c

Browse files
author
Shlomi Noach
committed
not null for unique key test
1 parent b0f487e commit a6d0d5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

localtests/swap-uk-uk/create.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
drop table if exists gh_ost_test;
22
create table gh_ost_test (
3-
id bigint,
3+
id bigint not null,
44
i int not null,
5-
ts timestamp(6),
5+
ts timestamp(6) not null,
66
unique key id_uidx(id),
77
unique key its_uidx(i, ts)
88
) ;

0 commit comments

Comments
 (0)