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
097566d6
Commit
097566d6
authored
Mar 24, 2014
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpl tests: move "include/master-slave.inc" down to be after all possible
checks that can skip the test
parent
01b1eef2
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
13 additions
and
12 deletions
+13
-12
mysql-test/suite/rpl/t/rpl_bug37426.test
mysql-test/suite/rpl/t/rpl_bug37426.test
+1
-1
mysql-test/suite/rpl/t/rpl_connection.test
mysql-test/suite/rpl/t/rpl_connection.test
+1
-1
mysql-test/suite/rpl/t/rpl_known_bugs_detection.test
mysql-test/suite/rpl/t/rpl_known_bugs_detection.test
+4
-3
mysql-test/suite/rpl/t/rpl_mix_found_rows.test
mysql-test/suite/rpl/t/rpl_mix_found_rows.test
+1
-1
mysql-test/suite/rpl/t/rpl_row_find_row_debug.test
mysql-test/suite/rpl/t/rpl_row_find_row_debug.test
+1
-1
mysql-test/suite/rpl/t/rpl_row_unsafe_funcs.test
mysql-test/suite/rpl/t/rpl_row_unsafe_funcs.test
+1
-1
mysql-test/suite/rpl/t/rpl_row_utf32.test
mysql-test/suite/rpl/t/rpl_row_utf32.test
+1
-1
mysql-test/suite/rpl/t/rpl_stm_sql_mode.test
mysql-test/suite/rpl/t/rpl_stm_sql_mode.test
+1
-1
mysql-test/suite/rpl/t/rpl_stm_stop_middle_group.test
mysql-test/suite/rpl/t/rpl_stm_stop_middle_group.test
+1
-1
mysql-test/suite/rpl/t/rpl_tmp_table_and_DDL.test
mysql-test/suite/rpl/t/rpl_tmp_table_and_DDL.test
+1
-1
No files found.
mysql-test/suite/rpl/t/rpl_bug37426.test
View file @
097566d6
...
...
@@ -3,8 +3,8 @@
# RBR breaks for CHAR() UTF8 fields > 85 chars
#############################################################
source
include
/
master
-
slave
.
inc
;
source
include
/
have_binlog_format_row
.
inc
;
source
include
/
master
-
slave
.
inc
;
connection
master
;
CREATE
TABLE
char128_utf8
(
i1
INT
NOT
NULL
,
c
CHAR
(
128
)
CHARACTER
SET
utf8
NOT
NULL
,
i2
INT
NOT
NULL
);
...
...
mysql-test/suite/rpl/t/rpl_connection.test
View file @
097566d6
--
source
include
/
not_embedded
.
inc
--
source
include
/
master
-
slave
.
inc
--
source
include
/
have_binlog_format_mixed
.
inc
--
source
include
/
master
-
slave
.
inc
#
# BUG#13427949: CHANGE MASTER TO USER='' (EMPTY USER) CAUSES ERRORS ON VALGRING
...
...
mysql-test/suite/rpl/t/rpl_known_bugs_detection.test
View file @
097566d6
...
...
@@ -8,13 +8,14 @@ call mtr.add_suppression("Unsafe statement written to the binary log using state
source
include
/
have_debug
.
inc
;
# because of pretend_version_50034_in_binlog the test can't run with checksum
source
include
/
have_binlog_checksum_off
.
inc
;
source
include
/
master
-
slave
.
inc
;
call
mtr
.
add_suppression
(
"Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT."
);
# Currently only statement-based-specific bugs are here
--
source
include
/
have_binlog_format_statement
.
inc
source
include
/
master
-
slave
.
inc
;
call
mtr
.
add_suppression
(
"Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT."
);
#
# This is to test that slave properly detects if
# master may suffer from:
...
...
mysql-test/suite/rpl/t/rpl_mix_found_rows.test
View file @
097566d6
source
include
/
master
-
slave
.
inc
;
source
include
/
have_binlog_format_mixed
.
inc
;
source
include
/
master
-
slave
.
inc
;
# It is not possible to replicate FOUND_ROWS() using statement-based
# replication, but there is a workaround that stores the result of
...
...
mysql-test/suite/rpl/t/rpl_row_find_row_debug.test
View file @
097566d6
#
# Bug#11760927: 53375: RBR + NO PK => HIGH LOAD ON SLAVE (TABLE SCAN/CPU) => SLAVE FAILURE
#
--
source
include
/
master
-
slave
.
inc
--
source
include
/
have_binlog_format_row
.
inc
--
source
include
/
have_debug
.
inc
--
source
include
/
master
-
slave
.
inc
# SETUP
# - setup log_warnings and debug
...
...
mysql-test/suite/rpl/t/rpl_row_unsafe_funcs.test
View file @
097566d6
source
include
/
master
-
slave
.
inc
;
source
include
/
have_binlog_format_mixed
.
inc
;
source
include
/
master
-
slave
.
inc
;
#
# Bug #30244: row_count/found_rows does not replicate well
...
...
mysql-test/suite/rpl/t/rpl_row_utf32.test
View file @
097566d6
--
source
include
/
master
-
slave
.
inc
--
source
include
/
have_binlog_format_row
.
inc
--
source
include
/
have_utf32
.
inc
--
source
include
/
master
-
slave
.
inc
#
# BUG#51787 Assertion `(n % 4) == 0' on slave upon INSERT into a table with UTF32
...
...
mysql-test/suite/rpl/t/rpl_stm_sql_mode.test
View file @
097566d6
--
source
include
/
master
-
slave
.
inc
--
source
include
/
have_binlog_format_statement
.
inc
--
source
include
/
master
-
slave
.
inc
#
# Bug #51055 Replication failure on duplicate key + traditional SQL mode
...
...
mysql-test/suite/rpl/t/rpl_stm_stop_middle_group.test
View file @
097566d6
...
...
@@ -2,9 +2,9 @@
# Please, check extra/rpl_tests/rpl_stop_middle_group.test.
###################################################################################
--
source
include
/
have_debug
.
inc
--
source
include
/
master
-
slave
.
inc
--
source
include
/
have_innodb
.
inc
--
source
include
/
have_binlog_format_statement
.
inc
--
source
include
/
master
-
slave
.
inc
SET
@@
session
.
binlog_direct_non_transactional_updates
=
FALSE
;
--
source
extra
/
rpl_tests
/
rpl_stop_middle_group
.
test
...
...
mysql-test/suite/rpl/t/rpl_tmp_table_and_DDL.test
View file @
097566d6
...
...
@@ -5,8 +5,8 @@
# does not exist' base on myisam engine.
#
source
include
/
master
-
slave
.
inc
;
source
include
/
have_binlog_format_row
.
inc
;
source
include
/
master
-
slave
.
inc
;
LET
$ENGINE_TYPE
=
MyISAM
;
source
extra
/
rpl_tests
/
rpl_tmp_table_and_DDL
.
test
;
...
...
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