mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
9d7014c07b
it's just backquoting the db's and table's names when writing DROP TEMPORARY TABLE to the binlog when a connection ends. A testcase for this.
13 lines
369 B
Text
13 lines
369 B
Text
connect (con1,localhost,root,,);
|
|
connect (con2,localhost,root,,);
|
|
connection con1;
|
|
reset master;
|
|
create database `drop-temp+table-test`;
|
|
use `drop-temp+table-test`;
|
|
create temporary table `table:name` (a int);
|
|
disconnect con1;
|
|
connection con2;
|
|
let $VERSION=`select version()`;
|
|
--replace_result $VERSION VERSION
|
|
show binlog events;
|
|
drop database `drop-temp+table-test`;
|