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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
3a5a54a8
Commit
3a5a54a8
authored
May 10, 2006
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update test results for 5.1
parent
f92b754f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
mysql-test/r/ansi.result
mysql-test/r/ansi.result
+7
-7
mysql-test/r/auto_increment.result
mysql-test/r/auto_increment.result
+3
-3
No files found.
mysql-test/r/ansi.result
View file @
3a5a54a8
...
@@ -21,21 +21,21 @@ CREATE TABLE t1 (i int auto_increment NOT NULL, PRIMARY KEY (i));
...
@@ -21,21 +21,21 @@ CREATE TABLE t1 (i int auto_increment NOT NULL, PRIMARY KEY (i));
SHOW CREATE TABLE t1;
SHOW CREATE TABLE t1;
Table Create Table
Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`i` int(11) NOT NULL
auto_increment
,
`i` int(11) NOT NULL
AUTO_INCREMENT
,
PRIMARY KEY (`i`)
PRIMARY KEY (`i`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1
) ENGINE=MyISAM DEFAULT CHARSET=latin1
SET @@SQL_MODE="MYSQL323";
SET @@SQL_MODE="MYSQL323";
SHOW CREATE TABLE t1;
SHOW CREATE TABLE t1;
Table Create Table
Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`i` int(11) NOT NULL
auto_increment
,
`i` int(11) NOT NULL
AUTO_INCREMENT
,
PRIMARY KEY (`i`)
PRIMARY KEY (`i`)
) TYPE=MyISAM
) TYPE=MyISAM
SET @@SQL_MODE="MYSQL40";
SET @@SQL_MODE="MYSQL40";
SHOW CREATE TABLE t1;
SHOW CREATE TABLE t1;
Table Create Table
Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`i` int(11) NOT NULL
auto_increment
,
`i` int(11) NOT NULL
AUTO_INCREMENT
,
PRIMARY KEY (`i`)
PRIMARY KEY (`i`)
) TYPE=MyISAM
) TYPE=MyISAM
SET @@SQL_MODE="NO_FIELD_OPTIONS";
SET @@SQL_MODE="NO_FIELD_OPTIONS";
...
...
mysql-test/r/auto_increment.result
View file @
3a5a54a8
...
@@ -372,8 +372,8 @@ MySQL 1002
...
@@ -372,8 +372,8 @@ MySQL 1002
SHOW CREATE TABLE `t1`;
SHOW CREATE TABLE `t1`;
Table Create Table
Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`t1_name` varchar(255)
default
NULL,
`t1_name` varchar(255)
DEFAULT
NULL,
`t1_id` int(10) unsigned NOT NULL
auto_increment
,
`t1_id` int(10) unsigned NOT NULL
AUTO_INCREMENT
,
PRIMARY KEY (`t1_id`),
PRIMARY KEY (`t1_id`),
KEY `t1_name` (`t1_name`)
KEY `t1_name` (`t1_name`)
) ENGINE=MyISAM AUTO_INCREMENT=1003 DEFAULT CHARSET=latin1
) ENGINE=MyISAM AUTO_INCREMENT=1003 DEFAULT CHARSET=latin1
...
...
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