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
077503c8
Commit
077503c8
authored
May 24, 2013
by
Venkatesh Duggirala
Browse files
Options
Browse Files
Download
Plain Diff
Bug#16765278 DELETE SQL_LOAD_MB* FILE (TEMP FILE) CREATED
BY BINLOG_KILLED_SIMULATE.TEST Merging fix from mysql-5.1
parents
e078068e
3af5ec99
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
mysql-test/suite/binlog/t/binlog_killed_simulate.test
mysql-test/suite/binlog/t/binlog_killed_simulate.test
+4
-5
No files found.
mysql-test/suite/binlog/t/binlog_killed_simulate.test
View file @
077503c8
...
...
@@ -20,9 +20,6 @@ reset master;
update
t1
set
a
=
2
/* will be "killed" after work has been done */
;
# a proof the query is binlogged with no error
#todo: introduce a suite private macro that provides numeric values
# for some constants like the offset of the first real event
# that is different between severs versions.
let
$MYSQLD_DATADIR
=
`select @@datadir`
;
--
let
$binlog_start_point
=
query_get_value
(
SHOW
BINLOG
EVENTS
LIMIT
1
,
End_log_pos
,
1
)
--
exec
$MYSQL_BINLOG
--
force
-
if
-
open
--
start
-
position
=
$binlog_start_point
$MYSQLD_DATADIR
/
master
-
bin
.
000001
>
$MYSQLTEST_VARDIR
/
tmp
/
binlog_killed_bug27571
.
binlog
...
...
@@ -48,14 +45,14 @@ reset master;
--
error
ER_QUERY_INTERRUPTED
load
data
infile
'../../std_data/rpl_loaddata.dat'
into
table
t2
/* will be "killed" in the middle */
;
# a proof the query is binlogged with an error
--
let
$binlog_load_data
=
query_get_value
(
SHOW
BINLOG
EVENTS
,
Pos
,
3
)
--
let
$binlog_end
=
query_get_value
(
SHOW
BINLOG
EVENTS
,
Pos
,
4
)
source
include
/
show_binlog_events
.
inc
;
--
exec
$MYSQL_BINLOG
--
force
-
if
-
open
--
start
-
position
=
$binlog_load_data
--
stop
-
position
=
$binlog_end
$MYSQLD_DATADIR
/
master
-
bin
.
000001
>
$MYSQLTEST_VARDIR
/
tmp
/
binlog_killed_bug27571
.
binlog
--
mkdir
$MYSQLTEST_VARDIR
/
tmp
/
binlog_killed_bug27571
--
exec
$MYSQL_BINLOG
--
local
-
load
=
$MYSQLTEST_VARDIR
/
tmp
/
binlog_killed_bug27571
--
force
-
if
-
open
--
start
-
position
=
$binlog_load_data
--
stop
-
position
=
$binlog_end
$MYSQLD_DATADIR
/
master
-
bin
.
000001
>
$MYSQLTEST_VARDIR
/
tmp
/
binlog_killed_bug27571
.
binlog
--
replace_result
$MYSQLTEST_VARDIR
MYSQLTEST_VARDIR
eval
select
...
...
@@ -68,6 +65,8 @@ eval select $error_code /* must return 0 to mean the killed query is in */;
# cleanup for the sub-case
remove_file
$MYSQLTEST_VARDIR
/
tmp
/
binlog_killed_bug27571
.
binlog
;
--
remove_files_wildcard
$MYSQLTEST_VARDIR
/
tmp
/
binlog_killed_bug27571
*
--
rmdir
$MYSQLTEST_VARDIR
/
tmp
/
binlog_killed_bug27571
drop
table
t1
,
t2
;
...
...
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