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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
b0062813
Commit
b0062813
authored
May 20, 2003
by
guilhem@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Version substitution so that tests pass on any build, independently of the
version is '-log', '-debug' etc.
parent
d58b4bed
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
mysql-test/r/rpl_flush_tables.result
mysql-test/r/rpl_flush_tables.result
+2
-2
mysql-test/t/rpl_flush_tables.test
mysql-test/t/rpl_flush_tables.test
+3
-0
No files found.
mysql-test/r/rpl_flush_tables.result
View file @
b0062813
...
...
@@ -14,7 +14,7 @@ rename table t1 to t5, t2 to t1;
flush no_write_to_binlog tables;
show binlog events;
Log_name Pos Event_type Server_id Orig_log_pos Info
master-bin.000001 4 Start 1 4 Server ver:
4.1.1-alpha-debug-log
, Binlog ver: 3
master-bin.000001 4 Start 1 4 Server ver:
VERSION
, Binlog ver: 3
master-bin.000001 79 Query 1 79 use `test`; create table t1 (a int)
master-bin.000001 137 Query 1 137 use `test`; insert into t1 values (10)
master-bin.000001 198 Query 1 198 use `test`; create table t2 (a int)
...
...
@@ -27,7 +27,7 @@ a
flush tables;
show binlog events;
Log_name Pos Event_type Server_id Orig_log_pos Info
master-bin.000001 4 Start 1 4 Server ver:
4.1.1-alpha-debug-log
, Binlog ver: 3
master-bin.000001 4 Start 1 4 Server ver:
VERSION
, Binlog ver: 3
master-bin.000001 79 Query 1 79 use `test`; create table t1 (a int)
master-bin.000001 137 Query 1 137 use `test`; insert into t1 values (10)
master-bin.000001 198 Query 1 198 use `test`; create table t2 (a int)
...
...
mysql-test/t/rpl_flush_tables.test
View file @
b0062813
...
...
@@ -5,6 +5,7 @@
#
source
include
/
master
-
slave
.
inc
;
let
$VERSION
=
`select version()`
;
create
table
t1
(
a
int
);
insert
into
t1
values
(
10
);
create
table
t2
(
a
int
);
...
...
@@ -17,12 +18,14 @@ rename table t1 to t5, t2 to t1;
# first don't write it to the binlog, to test the NO_WRITE_TO_BINLOG keyword.
flush
no_write_to_binlog
tables
;
# Check that it's not in the binlog.
--
replace_result
$VERSION
VERSION
show
binlog
events
;
# Check that the master is not confused.
select
*
from
t3
;
# This FLUSH should go into the binlog to not confuse the slave.
flush
tables
;
# Check that it's in the binlog.
--
replace_result
$VERSION
VERSION
show
binlog
events
;
save_master_pos
;
connection
slave
;
...
...
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