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
0acda146
Commit
0acda146
authored
Mar 06, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update test result
parent
aa3c00b5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
34 deletions
+34
-34
mysql-test/r/rpl_row_create_table.result
mysql-test/r/rpl_row_create_table.result
+34
-34
No files found.
mysql-test/r/rpl_row_create_table.result
View file @
0acda146
...
...
@@ -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