Skip to content

Commit

Permalink
reproduce bug in localtests
Browse files Browse the repository at this point in the history
  • Loading branch information
meiji163 committed Dec 19, 2024
1 parent d5ab048 commit 30adcb5
Showing 1 changed file with 9 additions and 0 deletions.
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');

0 comments on commit 30adcb5

Please sign in to comment.