mark some file to been opensource for ce-farm
This commit is contained in:
@ -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;
|
||||
11
tools/deploy/mysql_test/test_suite/msdt/r/mysql/lob.result
Normal file
11
tools/deploy/mysql_test/test_suite/msdt/r/mysql/lob.result
Normal 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;
|
||||
Reference in New Issue
Block a user