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
deb22599
Commit
deb22599
authored
Jul 07, 2005
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge to 5.0
parent
f0548a15
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
11 deletions
+11
-11
mysql-test/r/ctype_utf8.result
mysql-test/r/ctype_utf8.result
+4
-4
mysql-test/r/show_check.result
mysql-test/r/show_check.result
+5
-5
mysql-test/r/sql_mode.result
mysql-test/r/sql_mode.result
+2
-2
No files found.
mysql-test/r/ctype_utf8.result
View file @
deb22599
...
@@ -413,7 +413,7 @@ Table Create Table
...
@@ -413,7 +413,7 @@ Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`c` char(10) character set utf8 default NULL,
`c` char(10) character set utf8 default NULL,
UNIQUE KEY `a` USING HASH (`c`(1))
UNIQUE KEY `a` USING HASH (`c`(1))
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
insert into t1 values ('a'),('b'),('c'),('d'),('e'),('f');
insert into t1 values ('a'),('b'),('c'),('d'),('e'),('f');
insert into t1 values ('aa');
insert into t1 values ('aa');
ERROR 23000: Duplicate entry 'aa' for key 1
ERROR 23000: Duplicate entry 'aa' for key 1
...
@@ -449,7 +449,7 @@ Table Create Table
...
@@ -449,7 +449,7 @@ Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`c` char(10) character set utf8 default NULL,
`c` char(10) character set utf8 default NULL,
UNIQUE KEY `a` USING BTREE (`c`(1))
UNIQUE KEY `a` USING BTREE (`c`(1))
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
insert into t1 values ('a'),('b'),('c'),('d'),('e'),('f');
insert into t1 values ('a'),('b'),('c'),('d'),('e'),('f');
insert into t1 values ('aa');
insert into t1 values ('aa');
ERROR 23000: Duplicate entry 'aa' for key 1
ERROR 23000: Duplicate entry 'aa' for key 1
...
@@ -571,7 +571,7 @@ Table Create Table
...
@@ -571,7 +571,7 @@ Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`c` char(10) character set utf8 collate utf8_bin default NULL,
`c` char(10) character set utf8 collate utf8_bin default NULL,
UNIQUE KEY `a` USING HASH (`c`(1))
UNIQUE KEY `a` USING HASH (`c`(1))
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
insert into t1 values ('a'),('b'),('c'),('d'),('e'),('f');
insert into t1 values ('a'),('b'),('c'),('d'),('e'),('f');
insert into t1 values ('aa');
insert into t1 values ('aa');
ERROR 23000: Duplicate entry 'aa' for key 1
ERROR 23000: Duplicate entry 'aa' for key 1
...
@@ -607,7 +607,7 @@ Table Create Table
...
@@ -607,7 +607,7 @@ Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`c` char(10) character set utf8 collate utf8_bin default NULL,
`c` char(10) character set utf8 collate utf8_bin default NULL,
UNIQUE KEY `a` USING BTREE (`c`(1))
UNIQUE KEY `a` USING BTREE (`c`(1))
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
insert into t1 values ('a'),('b'),('c'),('d'),('e'),('f');
insert into t1 values ('a'),('b'),('c'),('d'),('e'),('f');
insert into t1 values ('aa');
insert into t1 values ('aa');
ERROR 23000: Duplicate entry 'aa' for key 1
ERROR 23000: Duplicate entry 'aa' for key 1
...
...
mysql-test/r/show_check.result
View file @
deb22599
...
@@ -420,7 +420,7 @@ Table Create Table
...
@@ -420,7 +420,7 @@ Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`i` int(11) default NULL,
`i` int(11) default NULL,
KEY `i` USING HASH (`i`)
KEY `i` USING HASH (`i`)
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
DROP TABLE t1;
DROP TABLE t1;
CREATE TABLE t1 (i int, KEY USING BTREE (i)) ENGINE=MEMORY;
CREATE TABLE t1 (i int, KEY USING BTREE (i)) ENGINE=MEMORY;
SHOW CREATE TABLE t1;
SHOW CREATE TABLE t1;
...
@@ -428,7 +428,7 @@ Table Create Table
...
@@ -428,7 +428,7 @@ Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`i` int(11) default NULL,
`i` int(11) default NULL,
KEY `i` USING BTREE (`i`)
KEY `i` USING BTREE (`i`)
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
DROP TABLE t1;
DROP TABLE t1;
CREATE TABLE t1 (i int, KEY (i)) ENGINE=MyISAM;
CREATE TABLE t1 (i int, KEY (i)) ENGINE=MyISAM;
SHOW CREATE TABLE t1;
SHOW CREATE TABLE t1;
...
@@ -474,7 +474,7 @@ Table Create Table
...
@@ -474,7 +474,7 @@ Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`i` int(11) default NULL,
`i` int(11) default NULL,
KEY `i` USING BTREE (`i`)
KEY `i` USING BTREE (`i`)
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
DROP TABLE t1;
DROP TABLE t1;
CREATE TABLE t1(
CREATE TABLE t1(
field1 text NOT NULL,
field1 text NOT NULL,
...
@@ -506,8 +506,8 @@ INDEX USING BTREE(c2)
...
@@ -506,8 +506,8 @@ INDEX USING BTREE(c2)
SHOW CREATE TABLE t1;
SHOW CREATE TABLE t1;
Table Create Table
Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`c1` int(11) NOT NULL
default '0'
,
`c1` int(11) NOT NULL,
`c2` int(11) NOT NULL
default '0'
,
`c2` int(11) NOT NULL,
PRIMARY KEY USING HASH (`c1`),
PRIMARY KEY USING HASH (`c1`),
KEY `c2` USING BTREE (`c2`)
KEY `c2` USING BTREE (`c2`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1
) ENGINE=MyISAM DEFAULT CHARSET=latin1
...
...
mysql-test/r/sql_mode.result
View file @
deb22599
...
@@ -18,7 +18,7 @@ t1 CREATE TABLE `t1` (
...
@@ -18,7 +18,7 @@ t1 CREATE TABLE `t1` (
`email` varchar(60) character set latin2 NOT NULL default '',
`email` varchar(60) character set latin2 NOT NULL default '',
PRIMARY KEY (`a`),
PRIMARY KEY (`a`),
UNIQUE KEY `email` USING BTREE (`email`)
UNIQUE KEY `email` USING BTREE (`email`)
) ENGINE=
HEAP
DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC
set @@sql_mode="ansi_quotes";
set @@sql_mode="ansi_quotes";
show variables like 'sql_mode';
show variables like 'sql_mode';
Variable_name Value
Variable_name Value
...
@@ -31,7 +31,7 @@ t1 CREATE TABLE "t1" (
...
@@ -31,7 +31,7 @@ t1 CREATE TABLE "t1" (
"email" varchar(60) character set latin2 NOT NULL default '',
"email" varchar(60) character set latin2 NOT NULL default '',
PRIMARY KEY ("a"),
PRIMARY KEY ("a"),
UNIQUE KEY "email" USING BTREE ("email")
UNIQUE KEY "email" USING BTREE ("email")
) ENGINE=
HEAP
DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC
set @@sql_mode="no_table_options";
set @@sql_mode="no_table_options";
show variables like 'sql_mode';
show variables like 'sql_mode';
Variable_name Value
Variable_name Value
...
...
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