Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions localtests/bit-unique-key/create.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
drop table if exists gh_ost_test;
create table gh_ost_test (
`id` bigint not null,
`bit_col` bit not null,
primary key (`id`, `bit_col`)
) DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
insert into gh_ost_test values (1, b'1');
insert into gh_ost_test values (2, b'1');
insert into gh_ost_test values (3, b'1');
Loading