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
444c831e
Commit
444c831e
authored
Jan 13, 2005
by
jimw@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update results files
parent
fdc16dc4
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
mysql-test/r/ctype_utf8.result
mysql-test/r/ctype_utf8.result
+2
-2
mysql-test/r/show_check.result
mysql-test/r/show_check.result
+5
-5
No files found.
mysql-test/r/ctype_utf8.result
View file @
444c831e
...
@@ -412,7 +412,7 @@ show create table t1;
...
@@ -412,7 +412,7 @@ show create table t1;
Table Create Table
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`
TYPE
HASH (`c`(1))
UNIQUE KEY `a`
USING
HASH (`c`(1))
) ENGINE=HEAP DEFAULT CHARSET=latin1
) ENGINE=HEAP 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');
...
@@ -570,7 +570,7 @@ show create table t1;
...
@@ -570,7 +570,7 @@ show create table t1;
Table Create Table
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`
TYPE
HASH (`c`(1))
UNIQUE KEY `a`
USING
HASH (`c`(1))
) ENGINE=HEAP DEFAULT CHARSET=latin1
) ENGINE=HEAP 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');
...
...
mysql-test/r/show_check.result
View file @
444c831e
...
@@ -419,7 +419,7 @@ SHOW CREATE TABLE t1;
...
@@ -419,7 +419,7 @@ SHOW CREATE TABLE t1;
Table Create Table
Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`i` int(11) default NULL,
`i` int(11) default NULL,
KEY `i`
TYPE
HASH (`i`)
KEY `i`
USING
HASH (`i`)
) ENGINE=HEAP DEFAULT CHARSET=latin1
) ENGINE=HEAP 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;
...
@@ -427,7 +427,7 @@ SHOW CREATE TABLE t1;
...
@@ -427,7 +427,7 @@ SHOW CREATE TABLE t1;
Table Create Table
Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`i` int(11) default NULL,
`i` int(11) default NULL,
KEY `i`
TYPE
BTREE (`i`)
KEY `i`
USING
BTREE (`i`)
) ENGINE=HEAP DEFAULT CHARSET=latin1
) ENGINE=HEAP 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;
...
@@ -443,7 +443,7 @@ SHOW CREATE TABLE t1;
...
@@ -443,7 +443,7 @@ SHOW CREATE TABLE t1;
Table Create Table
Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`i` int(11) default NULL,
`i` int(11) default NULL,
KEY `i`
TYPE
BTREE (`i`)
KEY `i`
USING
BTREE (`i`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1
) ENGINE=MyISAM 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;
...
@@ -466,13 +466,13 @@ SHOW CREATE TABLE t1;
...
@@ -466,13 +466,13 @@ SHOW CREATE TABLE t1;
Table Create Table
Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`i` int(11) default NULL,
`i` int(11) default NULL,
KEY `i`
TYPE
BTREE (`i`)
KEY `i`
USING
BTREE (`i`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1
) ENGINE=MyISAM DEFAULT CHARSET=latin1
ALTER TABLE t1 ENGINE=MEMORY;
ALTER TABLE t1 ENGINE=MEMORY;
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) default NULL,
`i` int(11) default NULL,
KEY `i`
TYPE
BTREE (`i`)
KEY `i`
USING
BTREE (`i`)
) ENGINE=HEAP DEFAULT CHARSET=latin1
) ENGINE=HEAP 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