mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
after-merge fixup
This commit is contained in:

parent
6881c96eb3
commit
4a2a13158e
@ -735,6 +735,10 @@ COUNT(*)
|
|||||||
3072
|
3072
|
||||||
set @@sort_buffer_size=default;
|
set @@sort_buffer_size=default;
|
||||||
DROP TABLE t1,t2;
|
DROP TABLE t1,t2;
|
||||||
|
drop table if exists t1;
|
||||||
|
create table t1 (a int) engine=innodb;
|
||||||
|
alter table t1 alter a set default 1;
|
||||||
|
drop table t1;
|
||||||
create table t1(a text) engine=innodb default charset=utf8;
|
create table t1(a text) engine=innodb default charset=utf8;
|
||||||
insert into t1 values('aaa');
|
insert into t1 values('aaa');
|
||||||
alter table t1 add index(a(1024));
|
alter table t1 add index(a(1024));
|
||||||
@ -746,8 +750,5 @@ t1 CREATE TABLE `t1` (
|
|||||||
`a` text,
|
`a` text,
|
||||||
KEY `a` (`a`(255))
|
KEY `a` (`a`(255))
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8
|
||||||
drop table if exists t1;
|
|
||||||
create table t1 (a int) engine=innodb;
|
|
||||||
alter table t1 alter a set default 1;
|
|
||||||
drop table t1;
|
drop table t1;
|
||||||
End of 5.0 tests
|
End of 5.0 tests
|
||||||
|
Reference in New Issue
Block a user