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
f858fe10
Commit
f858fe10
authored
Dec 18, 2007
by
hezx@hezx.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some test case for BUG#32205
parent
c2f00cc3
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
234 additions
and
114 deletions
+234
-114
mysql-test/r/binlog_start_comment.result
mysql-test/r/binlog_start_comment.result
+1
-0
mysql-test/r/mysqlbinlog2.result
mysql-test/r/mysqlbinlog2.result
+226
-113
mysql-test/t/binlog_start_comment.test
mysql-test/t/binlog_start_comment.test
+7
-1
No files found.
mysql-test/r/binlog_start_comment.result
View file @
f858fe10
reset master;
drop table if exists t1,t2;
create table t1 (word varchar(20)) -- create table t1;
create table t2 (word varchar(20)) -- create table t2;
...
...
mysql-test/r/mysqlbinlog2.result
View file @
f858fe10
This diff is collapsed.
Click to expand it.
mysql-test/t/binlog_start_comment.test
View file @
f858fe10
...
...
@@ -2,6 +2,7 @@
# with a syntax error, replicates fine
--
source
include
/
have_log_bin
.
inc
reset
master
;
--
disable_warnings
drop
table
if
exists
t1
,
t2
;
--
enable_warnings
...
...
@@ -11,6 +12,11 @@ load data infile '../std_data_ln/words.dat' into table t1 -- load data to t1;
insert
into
t2
values
(
"Ada"
);
flush
logs
;
select
*
from
t2
;
--
exec
$MYSQL_BINLOG
$MYSQLTEST_VARDIR
/
log
/
master
-
bin
.
000001
|
$MYSQL
--
exec
$MYSQL_BINLOG
$MYSQLTEST_VARDIR
/
log
/
master
-
bin
.
000001
>
$MYSQLTEST_VARDIR
/
tmp
/
binlog_start_comment
.
binlog
--
exec
$MYSQL
<
$MYSQLTEST_VARDIR
/
tmp
/
binlog_start_comment
.
binlog
flush
logs
;
select
*
from
t2
;
# clean up
drop
table
t1
,
t2
;
--
system
rm
$MYSQLTEST_VARDIR
/
tmp
/
binlog_start_comment
.
binlog
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