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
f1d1c98d
Commit
f1d1c98d
authored
May 11, 2006
by
jmiller@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changes for when NDB is default engine
parent
2efbd96b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
27 additions
and
16 deletions
+27
-16
mysql-test/extra/rpl_tests/rpl_flsh_tbls.test
mysql-test/extra/rpl_tests/rpl_flsh_tbls.test
+4
-0
mysql-test/r/rpl_sp004.result
mysql-test/r/rpl_sp004.result
+8
-8
mysql-test/t/rpl_multi_engine.test
mysql-test/t/rpl_multi_engine.test
+3
-0
mysql-test/t/rpl_row_basic_11bugs.test
mysql-test/t/rpl_row_basic_11bugs.test
+4
-0
mysql-test/t/rpl_sp004.test
mysql-test/t/rpl_sp004.test
+8
-8
No files found.
mysql-test/extra/rpl_tests/rpl_flsh_tbls.test
View file @
f1d1c98d
...
@@ -3,6 +3,10 @@
...
@@ -3,6 +3,10 @@
# RENAME TABLE work with MERGE tables on the slave.
# RENAME TABLE work with MERGE tables on the slave.
# Test of FLUSH NO_WRITE_TO_BINLOG by the way.
# Test of FLUSH NO_WRITE_TO_BINLOG by the way.
#
#
# Merge will not work with a default ndb engine
--
source
include
/
not_ndb_default
.
inc
--
source
include
/
master
-
slave
.
inc
--
source
include
/
master
-
slave
.
inc
create
table
t1
(
a
int
);
create
table
t1
(
a
int
);
...
...
mysql-test/r/rpl_sp004.result
View file @
f1d1c98d
...
@@ -26,25 +26,25 @@ DROP TABLE IF EXISTS test.t2;
...
@@ -26,25 +26,25 @@ DROP TABLE IF EXISTS test.t2;
INSERT INTO test.t3 VALUES(NULL,11111111.233333,NOW());
INSERT INTO test.t3 VALUES(NULL,11111111.233333,NOW());
END|
END|
CALL test.p1();
CALL test.p1();
SELECT * FROM test.t1;
SELECT * FROM test.t1
ORDER BY a
;
a
a
1
1
2
2
3
3
12
12
SELECT * FROM test.t2;
SELECT * FROM test.t2
ORDER BY a
;
a
a
1
1
2
2
3
3
8
8
SELECT * FROM test.t1;
SELECT * FROM test.t1
ORDER BY a
;
a
a
1
1
2
2
3
3
12
12
SELECT * FROM test.t2;
SELECT * FROM test.t2
ORDER BY a
;
a
a
1
1
2
2
...
@@ -62,25 +62,25 @@ t3
...
@@ -62,25 +62,25 @@ t3
CALL test.p1();
CALL test.p1();
Warnings:
Warnings:
Note 1050 Table 't3' already exists
Note 1050 Table 't3' already exists
SELECT * FROM test.t1;
SELECT * FROM test.t1
ORDER BY a
;
a
a
1
1
2
2
3
3
12
12
SELECT * FROM test.t2;
SELECT * FROM test.t2
ORDER BY a
;
a
a
1
1
2
2
3
3
8
8
SELECT * FROM test.t1;
SELECT * FROM test.t1
ORDER BY a
;
a
a
1
1
2
2
3
3
12
12
SELECT * FROM test.t2;
SELECT * FROM test.t2
ORDER BY a
;
a
a
1
1
2
2
...
...
mysql-test/t/rpl_multi_engine.test
View file @
f1d1c98d
# See if replication between MyISAM, MEMORY and InnoDB works.
# See if replication between MyISAM, MEMORY and InnoDB works.
# Results files do not match when ndb is default
--
source
include
/
not_ndb_default
.
inc
--
source
include
/
master
-
slave
.
inc
--
source
include
/
master
-
slave
.
inc
connection
slave
;
connection
slave
;
...
...
mysql-test/t/rpl_row_basic_11bugs.test
View file @
f1d1c98d
--
source
include
/
have_row_based
.
inc
--
source
include
/
have_row_based
.
inc
--
source
include
/
have_binlog_format_row
.
inc
--
source
include
/
have_binlog_format_row
.
inc
# Show binlog events will cause failure when ndb is default
--
source
include
/
not_ndb_default
.
inc
--
source
include
/
master
-
slave
.
inc
--
source
include
/
master
-
slave
.
inc
# Bug#15942 (RBR ignores --binlog_ignore_db and tries to map to table
# Bug#15942 (RBR ignores --binlog_ignore_db and tries to map to table
...
...
mysql-test/t/rpl_sp004.test
View file @
f1d1c98d
...
@@ -44,13 +44,13 @@ END|
...
@@ -44,13 +44,13 @@ END|
delimiter
;
|
delimiter
;
|
CALL
test
.
p1
();
CALL
test
.
p1
();
SELECT
*
FROM
test
.
t1
;
SELECT
*
FROM
test
.
t1
ORDER
BY
a
;
SELECT
*
FROM
test
.
t2
;
SELECT
*
FROM
test
.
t2
ORDER
BY
a
;
save_master_pos
;
save_master_pos
;
connection
slave
;
connection
slave
;
sync_with_master
;
sync_with_master
;
SELECT
*
FROM
test
.
t1
;
SELECT
*
FROM
test
.
t1
ORDER
BY
a
;
SELECT
*
FROM
test
.
t2
;
SELECT
*
FROM
test
.
t2
ORDER
BY
a
;
connection
master
;
connection
master
;
CALL
test
.
p2
();
CALL
test
.
p2
();
...
@@ -66,14 +66,14 @@ SHOW TABLES;
...
@@ -66,14 +66,14 @@ SHOW TABLES;
connection
master
;
connection
master
;
CALL
test
.
p1
();
CALL
test
.
p1
();
SELECT
*
FROM
test
.
t1
;
SELECT
*
FROM
test
.
t1
ORDER
BY
a
;
SELECT
*
FROM
test
.
t2
;
SELECT
*
FROM
test
.
t2
ORDER
BY
a
;
#SELECT * FROM test.t3;
#SELECT * FROM test.t3;
save_master_pos
;
save_master_pos
;
connection
slave
;
connection
slave
;
sync_with_master
;
sync_with_master
;
SELECT
*
FROM
test
.
t1
;
SELECT
*
FROM
test
.
t1
ORDER
BY
a
;
SELECT
*
FROM
test
.
t2
;
SELECT
*
FROM
test
.
t2
ORDER
BY
a
;
#SELECT * FROM test.t3;
#SELECT * FROM test.t3;
--
exec
$MYSQL_DUMP
--
compact
--
order
-
by
-
primary
--
skip
-
extended
-
insert
--
no
-
create
-
info
test
>
$MYSQLTEST_VARDIR
/
tmp
/
sp004_master
.
sql
--
exec
$MYSQL_DUMP
--
compact
--
order
-
by
-
primary
--
skip
-
extended
-
insert
--
no
-
create
-
info
test
>
$MYSQLTEST_VARDIR
/
tmp
/
sp004_master
.
sql
...
...
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