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
fc93c5a9
Commit
fc93c5a9
authored
Jun 15, 2006
by
mats@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Various fixes to allow tests to pass.
parent
eb09920b
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
1 deletion
+7
-1
mysql-test/r/rpl_row_basic_11bugs.result
mysql-test/r/rpl_row_basic_11bugs.result
+1
-1
mysql-test/t/disabled.def
mysql-test/t/disabled.def
+1
-0
mysql-test/t/rpl_row_basic_11bugs.test
mysql-test/t/rpl_row_basic_11bugs.test
+3
-0
mysql-test/t/rpl_truncate_7ndb.test
mysql-test/t/rpl_truncate_7ndb.test
+2
-0
No files found.
mysql-test/r/rpl_row_basic_11bugs.result
View file @
fc93c5a9
...
@@ -56,7 +56,7 @@ DELETE FROM t1 WHERE a = 0;
...
@@ -56,7 +56,7 @@ DELETE FROM t1 WHERE a = 0;
UPDATE t1 SET a=99 WHERE a = 0;
UPDATE t1 SET a=99 WHERE a = 0;
SHOW BINLOG EVENTS;
SHOW BINLOG EVENTS;
Log_name Pos Event_type Server_id End_log_pos Info
Log_name Pos Event_type Server_id End_log_pos Info
master-bin.000001 4 Format_desc 1 102 Server ver:
5.1.11-beta-debug-log
, Binlog ver: 4
master-bin.000001 4 Format_desc 1 102 Server ver:
SERVER_VERSION
, Binlog ver: 4
master-bin.000001 102 Query 1 188 use `test`; CREATE TABLE t1 (a INT)
master-bin.000001 102 Query 1 188 use `test`; CREATE TABLE t1 (a INT)
master-bin.000001 188 Table_map 1 227 table_id: # (test.t1)
master-bin.000001 188 Table_map 1 227 table_id: # (test.t1)
master-bin.000001 227 Write_rows 1 266 table_id: # flags: STMT_END_F
master-bin.000001 227 Write_rows 1 266 table_id: # flags: STMT_END_F
mysql-test/t/disabled.def
View file @
fc93c5a9
...
@@ -35,6 +35,7 @@ rpl_switch_stm_row_mixed : BUG#18590 2006-03-28 brian
...
@@ -35,6 +35,7 @@ rpl_switch_stm_row_mixed : BUG#18590 2006-03-28 brian
rpl_row_blob_innodb : BUG#18980 2006-04-10 kent Test fails randomly
rpl_row_blob_innodb : BUG#18980 2006-04-10 kent Test fails randomly
rpl_row_func003 : BUG#19074 2006-13-04 andrei test failed
rpl_row_func003 : BUG#19074 2006-13-04 andrei test failed
rpl_sp : BUG#16456 2006-02-16 jmiller
rpl_sp : BUG#16456 2006-02-16 jmiller
rpl_sp_effects : BUG#19862 2006-06-15 mkindahl
# the below testcase have been reworked to avoid the bug, test contains comment, keep bug open
# the below testcase have been reworked to avoid the bug, test contains comment, keep bug open
#ndb_binlog_ddl_multi : BUG#18976 2006-04-10 kent CRBR: multiple binlog, second binlog may miss schema log events
#ndb_binlog_ddl_multi : BUG#18976 2006-04-10 kent CRBR: multiple binlog, second binlog may miss schema log events
mysql-test/t/rpl_row_basic_11bugs.test
View file @
fc93c5a9
...
@@ -2,6 +2,8 @@
...
@@ -2,6 +2,8 @@
--
source
include
/
have_binlog_format_row
.
inc
--
source
include
/
have_binlog_format_row
.
inc
let
$SERVER_VERSION
=
`select version()`
;
#This test case is not written for NDB, the result files
#This test case is not written for NDB, the result files
#will not match when NDB is the default engine
#will not match when NDB is the default engine
--
source
include
/
not_ndb_default
.
inc
--
source
include
/
not_ndb_default
.
inc
...
@@ -49,5 +51,6 @@ DELETE FROM t1;
...
@@ -49,5 +51,6 @@ DELETE FROM t1;
INSERT
INTO
t1
VALUES
(
1
),(
2
);
INSERT
INTO
t1
VALUES
(
1
),(
2
);
DELETE
FROM
t1
WHERE
a
=
0
;
DELETE
FROM
t1
WHERE
a
=
0
;
UPDATE
t1
SET
a
=
99
WHERE
a
=
0
;
UPDATE
t1
SET
a
=
99
WHERE
a
=
0
;
--
replace_result
$SERVER_VERSION
SERVER_VERSION
--
replace_regex
/
table_id
:
[
0
-
9
]
+/
table_id
:
#/
--
replace_regex
/
table_id
:
[
0
-
9
]
+/
table_id
:
#/
SHOW
BINLOG
EVENTS
;
SHOW
BINLOG
EVENTS
;
mysql-test/t/rpl_truncate_7ndb.test
View file @
fc93c5a9
...
@@ -22,6 +22,8 @@ CREATE TABLE t1 (a INT PRIMARY KEY, b LONG) ENGINE=NDB;
...
@@ -22,6 +22,8 @@ CREATE TABLE t1 (a INT PRIMARY KEY, b LONG) ENGINE=NDB;
INSERT
INTO
t1
VALUES
(
1
,
1
),
(
2
,
2
);
INSERT
INTO
t1
VALUES
(
1
,
1
),
(
2
,
2
);
SELECT
*
FROM
t1
ORDER
BY
a
,
b
;
SELECT
*
FROM
t1
ORDER
BY
a
,
b
;
--
echo
****
On
Slave
****
--
echo
****
On
Slave
****
# This is silly, but NDB doesn't add to the binlog fast enough
--
real_sleep
10
sync_slave_with_master
;
sync_slave_with_master
;
INSERT
INTO
t1
VALUE
(
3
,
3
);
INSERT
INTO
t1
VALUE
(
3
,
3
);
SELECT
*
FROM
t1
ORDER
BY
a
,
b
;
SELECT
*
FROM
t1
ORDER
BY
a
,
b
;
...
...
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