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
b4f09aa2
Commit
b4f09aa2
authored
Apr 08, 2021
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Plain Diff
Merge 10.4 into 10.5
parents
2a781075
4e2ca422
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
102 additions
and
1 deletion
+102
-1
mysql-test/main/backup_lock_binlog.result
mysql-test/main/backup_lock_binlog.result
+40
-0
mysql-test/main/backup_lock_binlog.test
mysql-test/main/backup_lock_binlog.test
+49
-0
sql/sql_table.cc
sql/sql_table.cc
+13
-1
No files found.
mysql-test/main/backup_lock_binlog.result
0 → 100644
View file @
b4f09aa2
#
# MDEV-25334 FTWRL/Backup blocks DDL on temporary tables with binlog
# enabled assertion fails in Diagnostics_area::set_error_status
#
select @@binlog_format;
@@binlog_format
MIXED
connect con1,localhost,root,,;
connection default;
#
# Test 1
#
CREATE TEMPORARY TABLE tmp (a INT);
connection con1;
FLUSH TABLES WITH READ LOCK;
connection default;
SET lock_wait_timeout= 1;
ALTER TABLE tmp;
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
connection con1;
unlock tables;
connection default;
drop table tmp;
#
# Test 2 (In statement format to ensure temporary table gets logged)
#
set @@binlog_format=statement;
CREATE TEMPORARY TABLE tmp (a INT);
connection con1;
BACKUP STAGE START;
BACKUP STAGE BLOCK_COMMIT;
connection default;
SET lock_wait_timeout= 1;
ALTER TABLE tmp;
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
connection con1;
BACKUP STAGE end;
connection default;
drop table tmp;
disconnect con1;
mysql-test/main/backup_lock_binlog.test
0 → 100644
View file @
b4f09aa2
--
source
include
/
have_binlog_format_mixed_or_statement
.
inc
#
# Tests involving locks and binlog
#
--
echo
#
--
echo
# MDEV-25334 FTWRL/Backup blocks DDL on temporary tables with binlog
--
echo
# enabled assertion fails in Diagnostics_area::set_error_status
--
echo
#
select
@@
binlog_format
;
--
connect
(
con1
,
localhost
,
root
,,)
connection
default
;
--
echo
#
--
echo
# Test 1
--
echo
#
CREATE
TEMPORARY
TABLE
tmp
(
a
INT
);
--
connection
con1
FLUSH
TABLES
WITH
READ
LOCK
;
--
connection
default
SET
lock_wait_timeout
=
1
;
--
error
ER_LOCK_WAIT_TIMEOUT
ALTER
TABLE
tmp
;
--
connection
con1
unlock
tables
;
--
connection
default
drop
table
tmp
;
--
echo
#
--
echo
# Test 2 (In statement format to ensure temporary table gets logged)
--
echo
#
set
@@
binlog_format
=
statement
;
CREATE
TEMPORARY
TABLE
tmp
(
a
INT
);
--
connection
con1
BACKUP
STAGE
START
;
BACKUP
STAGE
BLOCK_COMMIT
;
--
connection
default
SET
lock_wait_timeout
=
1
;
--
error
ER_LOCK_WAIT_TIMEOUT
ALTER
TABLE
tmp
;
--
connection
con1
BACKUP
STAGE
end
;
--
connection
default
drop
table
tmp
;
--
disconnect
con1
sql/sql_table.cc
View file @
b4f09aa2
...
...
@@ -10084,7 +10084,8 @@ bool mysql_alter_table(THD *thd, const LEX_CSTRING *new_db,
If such table exists, there must be a corresponding TABLE_SHARE in
THD::all_temp_tables list.
*/
if
(
thd
->
find_tmp_table_share
(
alter_ctx
.
new_db
.
str
,
alter_ctx
.
new_name
.
str
))
if
(
thd
->
find_tmp_table_share
(
alter_ctx
.
new_db
.
str
,
alter_ctx
.
new_name
.
str
))
{
my_error
(
ER_TABLE_EXISTS_ERROR
,
MYF
(
0
),
alter_ctx
.
new_alias
.
str
);
DBUG_RETURN
(
true
);
...
...
@@ -10225,6 +10226,17 @@ bool mysql_alter_table(THD *thd, const LEX_CSTRING *new_db,
if
(
table
->
s
->
tmp_table
==
NO_TMP_TABLE
)
mysql_audit_alter_table
(
thd
,
table_list
);
else
if
(
table_creation_was_logged
&&
mysql_bin_log
.
is_open
())
{
/* Protect against MDL error in binary logging */
MDL_request
mdl_request
;
DBUG_ASSERT
(
!
mdl_ticket
);
MDL_REQUEST_INIT
(
&
mdl_request
,
MDL_key
::
BACKUP
,
""
,
""
,
MDL_BACKUP_COMMIT
,
MDL_TRANSACTION
);
if
(
thd
->
mdl_context
.
acquire_lock
(
&
mdl_request
,
thd
->
variables
.
lock_wait_timeout
))
DBUG_RETURN
(
true
);
}
THD_STAGE_INFO
(
thd
,
stage_setup
);
...
...
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