init push

This commit is contained in:
oceanbase-admin
2021-05-31 22:56:52 +08:00
commit cea7de1475
7020 changed files with 5689869 additions and 0 deletions

View File

@ -0,0 +1,5 @@
create table t1(pk bigint, c1 bigint, c2 varchar(512), c3 bigint, c4 varchar(512), primary key(pk)) DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci
create unique index unique_c1 on t1(c1)
create unique index unique_c2 on t1(c2)
create unique index unique_c3 on t1(c3)
create unique index unique_c4 on t1(c4)