mark some file to been opensource for ce-farm

This commit is contained in:
niyuhang
2023-11-15 11:44:43 +00:00
committed by ob-robot
parent 4900683cff
commit c8ace58297
685 changed files with 1080566 additions and 111051 deletions

View File

@ -0,0 +1,13 @@
drop table if exists msdt1;
drop table if exists msdt2;
create table msdt1(a int, b int);
insert into msdt1 values(1, 1), (2, 2);
alter table msdt1 add x varchar(10) after a;
insert into msdt1 values(3, 'hehe', 3);
create table msdt2(a int, b int);
result
1
result
1
drop table msdt1;
drop table msdt2;

View File

@ -0,0 +1,11 @@
drop table if exists msdt_lob;
drop table if exists msdt_normal;
create table msdt_lob(c1 text, c2 int);
alter table msdt_lob drop c2;
create table msdt_normal(a int, b int);
result
1
result
1
drop table msdt_lob;
drop table msdt_normal;