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
1e028904
Commit
1e028904
authored
Mar 06, 2006
by
pem@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/extern/mysql/bk/mysql-5.1-new
into mysql.com:/extern/mysql/5.1/generic/mysql-5.1-new
parents
a0658437
6634aec8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
38 deletions
+38
-38
mysql-test/r/lowercase_table2.result
mysql-test/r/lowercase_table2.result
+2
-2
mysql-test/r/rpl_row_UUID.result
mysql-test/r/rpl_row_UUID.result
+2
-2
mysql-test/r/rpl_row_create_table.result
mysql-test/r/rpl_row_create_table.result
+34
-34
No files found.
mysql-test/r/lowercase_table2.result
View file @
1e028904
...
...
@@ -13,7 +13,7 @@ T1
SHOW CREATE TABLE T1;
Table Create Table
T1 CREATE TABLE `T1` (
`a` int(11)
default
NULL
`a` int(11)
DEFAULT
NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
RENAME TABLE T1 TO T2;
SHOW TABLES LIKE "T2";
...
...
@@ -68,7 +68,7 @@ T1
SHOW CREATE TABLE T1;
Table Create Table
T1 CREATE TABLE `T1` (
`a` int(11)
default
NULL
`a` int(11)
DEFAULT
NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1
RENAME TABLE T1 TO T2;
SHOW TABLES LIKE "T2";
...
...
mysql-test/r/rpl_row_UUID.result
View file @
1e028904
...
...
@@ -29,9 +29,9 @@ insert into t2 values(fn1(2));
SHOW CREATE TABLE test.t1;
Table Create Table
t1 CREATE TABLE `t1` (
`a` int(11) NOT NULL
default
'0',
`a` int(11) NOT NULL
DEFAULT
'0',
`blob_column` longblob,
`vchar_column` varchar(100)
default
NULL,
`vchar_column` varchar(100)
DEFAULT
NULL,
PRIMARY KEY (`a`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1
DROP PROCEDURE test.p1;
...
...
mysql-test/r/rpl_row_create_table.result
View file @
1e028904
...
...
@@ -37,39 +37,39 @@ Info use `test`; CREATE TABLE t4 (a INT, b INT) ENGINE=Merge CHARSET=utf8
SHOW CREATE TABLE t1;
Table t1
Create Table CREATE TABLE `t1` (
`a` int(11)
default
NULL,
`b` int(11)
default
NULL
`a` int(11)
DEFAULT
NULL,
`b` int(11)
DEFAULT
NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
SHOW CREATE TABLE t2;
Table t2
Create Table CREATE TABLE `t2` (
`a` int(11)
default
NULL,
`b` int(11)
default
NULL
`a` int(11)
DEFAULT
NULL,
`b` int(11)
DEFAULT
NULL
) ENGINE=MRG_MyISAM DEFAULT CHARSET=latin1 UNION=()
SHOW CREATE TABLE t3;
Table t3
Create Table CREATE TABLE `t3` (
`a` int(11)
default
NULL,
`b` int(11)
default
NULL
`a` int(11)
DEFAULT
NULL,
`b` int(11)
DEFAULT
NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8
**** On Slave ****
SHOW CREATE TABLE t1;
Table t1
Create Table CREATE TABLE `t1` (
`a` int(11)
default
NULL,
`b` int(11)
default
NULL
`a` int(11)
DEFAULT
NULL,
`b` int(11)
DEFAULT
NULL
) ENGINE=MEMORY DEFAULT CHARSET=latin1
SHOW CREATE TABLE t2;
Table t2
Create Table CREATE TABLE `t2` (
`a` int(11)
default
NULL,
`b` int(11)
default
NULL
`a` int(11)
DEFAULT
NULL,
`b` int(11)
DEFAULT
NULL
) ENGINE=MRG_MyISAM DEFAULT CHARSET=latin1 UNION=()
SHOW CREATE TABLE t3;
Table t3
Create Table CREATE TABLE `t3` (
`a` int(11)
default
NULL,
`b` int(11)
default
NULL
`a` int(11)
DEFAULT
NULL,
`b` int(11)
DEFAULT
NULL
) ENGINE=MEMORY DEFAULT CHARSET=utf8
CREATE TABLE t5 (b INT, c INT) SELECT * FROM t3;
CREATE TEMPORARY TABLE tt3 (a INT, b INT);
...
...
@@ -79,18 +79,18 @@ CREATE TABLE t6 (b INT, c INT) SELECT * FROM tt3;
SHOW CREATE TABLE t5;
Table t5
Create Table CREATE TABLE `t5` (
`c` int(11)
default
NULL,
`a` int(11)
default
NULL,
`b` int(11)
default
NULL
`c` int(11)
DEFAULT
NULL,
`a` int(11)
DEFAULT
NULL,
`b` int(11)
DEFAULT
NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
SELECT * FROM t5 ORDER BY a,b,c;
c a b
SHOW CREATE TABLE t6;
Table t6
Create Table CREATE TABLE `t6` (
`c` int(11)
default
NULL,
`a` int(11)
default
NULL,
`b` int(11)
default
NULL
`c` int(11)
DEFAULT
NULL,
`a` int(11)
DEFAULT
NULL,
`b` int(11)
DEFAULT
NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
SELECT * FROM t6 ORDER BY a,b,c;
c a b
...
...
@@ -104,18 +104,18 @@ NULL 6 12
SHOW CREATE TABLE t5;
Table t5
Create Table CREATE TABLE `t5` (
`c` int(11)
default
NULL,
`a` int(11)
default
NULL,
`b` int(11)
default
NULL
`c` int(11)
DEFAULT
NULL,
`a` int(11)
DEFAULT
NULL,
`b` int(11)
DEFAULT
NULL
) ENGINE=MEMORY DEFAULT CHARSET=latin1
SELECT * FROM t5 ORDER BY a,b,c;
c a b
SHOW CREATE TABLE t6;
Table t6
Create Table CREATE TABLE `t6` (
`c` int(11)
default
NULL,
`a` int(11)
default
NULL,
`b` int(11)
default
NULL
`c` int(11)
DEFAULT
NULL,
`a` int(11)
DEFAULT
NULL,
`b` int(11)
DEFAULT
NULL
) ENGINE=MEMORY DEFAULT CHARSET=latin1
SELECT * FROM t6 ORDER BY a,b,c;
c a b
...
...
@@ -182,32 +182,32 @@ CREATE TEMPORARY TABLE tt6 LIKE tt4;
SHOW CREATE TABLE t8;
Table t8
Create Table CREATE TABLE `t8` (
`a` int(11)
default
NULL,
`b` int(11)
default
NULL
`a` int(11)
DEFAULT
NULL,
`b` int(11)
DEFAULT
NULL
) ENGINE=MRG_MyISAM DEFAULT CHARSET=utf8 UNION=()
SHOW CREATE TABLE t9;
Table t9
Create Table CREATE TABLE `t9` (
`a` int(11)
default
NULL,
`b` int(11)
default
NULL
`a` int(11)
DEFAULT
NULL,
`b` int(11)
DEFAULT
NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
SHOW BINLOG EVENTS FROM 1548;
Log_name Pos Event_type Server_id End_log_pos Info
master-bin.000001 1548 Query 1 1634 use `test`; CREATE TABLE t8 LIKE t4
master-bin.000001 1634 Query 1 1773 use `test`; CREATE TABLE `t9` (
`a` int(11)
default
NULL,
`b` int(11)
default
NULL
`a` int(11)
DEFAULT
NULL,
`b` int(11)
DEFAULT
NULL
)
**** On Slave ****
SHOW CREATE TABLE t8;
Table t8
Create Table CREATE TABLE `t8` (
`a` int(11)
default
NULL,
`b` int(11)
default
NULL
`a` int(11)
DEFAULT
NULL,
`b` int(11)
DEFAULT
NULL
) ENGINE=MRG_MyISAM DEFAULT CHARSET=utf8 UNION=()
SHOW CREATE TABLE t9;
Table t9
Create Table CREATE TABLE `t9` (
`a` int(11)
default
NULL,
`b` int(11)
default
NULL
`a` int(11)
DEFAULT
NULL,
`b` int(11)
DEFAULT
NULL
) ENGINE=MEMORY 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