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
4cc0562b
Commit
4cc0562b
authored
Oct 07, 2004
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updates tests after 'no automatic default' patch
parent
640fefff
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
mysql-test/r/symlink.result
mysql-test/r/symlink.result
+8
-8
No files found.
mysql-test/r/symlink.result
View file @
4cc0562b
...
@@ -37,8 +37,8 @@ show create table t9;
...
@@ -37,8 +37,8 @@ show create table t9;
Table Create Table
Table Create Table
t9 CREATE TABLE `t9` (
t9 CREATE TABLE `t9` (
`a` int(11) NOT NULL auto_increment,
`a` int(11) NOT NULL auto_increment,
`b` char(16) NOT NULL
default ''
,
`b` char(16) NOT NULL,
`c` int(11) NOT NULL
default '0'
,
`c` int(11) NOT NULL,
PRIMARY KEY (`a`)
PRIMARY KEY (`a`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='TEST_DIR/var/tmp/' INDEX DIRECTORY='TEST_DIR/var/run/'
) ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='TEST_DIR/var/tmp/' INDEX DIRECTORY='TEST_DIR/var/run/'
alter table t9 rename t8, add column d int not null;
alter table t9 rename t8, add column d int not null;
...
@@ -58,9 +58,9 @@ show create table mysqltest.t9;
...
@@ -58,9 +58,9 @@ show create table mysqltest.t9;
Table Create Table
Table Create Table
t9 CREATE TABLE `t9` (
t9 CREATE TABLE `t9` (
`a` int(11) NOT NULL auto_increment,
`a` int(11) NOT NULL auto_increment,
`b` char(16) NOT NULL
default ''
,
`b` char(16) NOT NULL,
`c` int(11) NOT NULL
default '0'
,
`c` int(11) NOT NULL,
`d` int(11) NOT NULL
default '0'
,
`d` int(11) NOT NULL,
PRIMARY KEY (`a`)
PRIMARY KEY (`a`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='TEST_DIR/var/tmp/' INDEX DIRECTORY='TEST_DIR/var/run/'
) ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='TEST_DIR/var/tmp/' INDEX DIRECTORY='TEST_DIR/var/run/'
drop database mysqltest;
drop database mysqltest;
...
@@ -68,19 +68,19 @@ create table t1 (a int not null) engine=myisam;
...
@@ -68,19 +68,19 @@ create table t1 (a int not null) engine=myisam;
show create table t1;
show create table t1;
Table Create Table
Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`a` int(11) NOT NULL
default '0'
`a` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
) ENGINE=MyISAM DEFAULT CHARSET=latin1
alter table t1 add b int;
alter table t1 add b int;
show create table t1;
show create table t1;
Table Create Table
Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`a` int(11) NOT NULL
default '0'
,
`a` int(11) NOT NULL,
`b` int(11) default NULL
`b` int(11) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
) ENGINE=MyISAM DEFAULT CHARSET=latin1
show create table t1;
show create table t1;
Table Create Table
Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`a` int(11) NOT NULL
default '0'
,
`a` int(11) NOT NULL,
`b` int(11) default NULL
`b` int(11) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
) ENGINE=MyISAM DEFAULT CHARSET=latin1
drop table t1;
drop table t1;
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