Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
4a2a1315
Commit
4a2a1315
authored
Jul 20, 2007
by
ramil/ram@mysql.com/ramil.myoffice.izhnet.ru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
after-merge fixup
parent
6881c96e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
mysql-test/r/innodb_mysql.result
mysql-test/r/innodb_mysql.result
+4
-3
No files found.
mysql-test/r/innodb_mysql.result
View file @
4a2a1315
...
@@ -735,6 +735,10 @@ COUNT(*)
...
@@ -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` (
...
@@ -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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment