mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Bug#18775 - Temporary table from alter table visible to other threads
New test cases. Names with umlauts don't compare well on Windows.
This commit is contained in:
@ -101,23 +101,23 @@ test.t5 backup status OK
|
||||
Warnings:
|
||||
Warning 1541 The syntax 'BACKUP TABLE' is deprecated and will be removed in MySQL 5.2. Please use MySQL Administrator (mysqldump, mysql) instead.
|
||||
drop table t5;
|
||||
DROP TABLE IF EXISTS `t-bl<62>ten`;
|
||||
CREATE TABLE `t-bl<62>ten` (c1 INT);
|
||||
INSERT INTO `t-bl<62>ten` VALUES (1), (2), (3);
|
||||
BACKUP TABLE `t-bl<62>ten` TO '../tmp';
|
||||
DROP TABLE IF EXISTS `t+1`;
|
||||
CREATE TABLE `t+1` (c1 INT);
|
||||
INSERT INTO `t+1` VALUES (1), (2), (3);
|
||||
BACKUP TABLE `t+1` TO '../tmp';
|
||||
Table Op Msg_type Msg_text
|
||||
test.t-bl<62>ten backup status OK
|
||||
test.t+1 backup status OK
|
||||
Warnings:
|
||||
Warning 1541 The syntax 'BACKUP TABLE' is deprecated and will be removed in MySQL 5.2. Please use MySQL Administrator (mysqldump, mysql) instead.
|
||||
DROP TABLE `t-bl<62>ten`;
|
||||
RESTORE TABLE `t-bl<62>ten` FROM '../tmp';
|
||||
DROP TABLE `t+1`;
|
||||
RESTORE TABLE `t+1` FROM '../tmp';
|
||||
Table Op Msg_type Msg_text
|
||||
test.t-bl<62>ten restore status OK
|
||||
test.t+1 restore status OK
|
||||
Warnings:
|
||||
Warning 1541 The syntax 'RESTORE TABLE' is deprecated and will be removed in MySQL 5.2. Please use MySQL Administrator (mysqldump, mysql) instead.
|
||||
SELECT * FROM `t-bl<62>ten`;
|
||||
SELECT * FROM `t+1`;
|
||||
c1
|
||||
1
|
||||
2
|
||||
3
|
||||
DROP TABLE `t-bl<62>ten`;
|
||||
DROP TABLE `t+1`;
|
||||
|
Reference in New Issue
Block a user