summaryrefslogtreecommitdiff
path: root/mysql-test/r/backup.result
diff options
context:
space:
mode:
authoringo/istruewing@chilla.local <>2006-08-03 08:12:56 +0200
committeringo/istruewing@chilla.local <>2006-08-03 08:12:56 +0200
commitff329207192022626518cae27c27f33c70701880 (patch)
treef80f701a9a5b1d2adae1066da882c6efe6d2ece6 /mysql-test/r/backup.result
parentc8ad865ffe1afbf2149b5a0b27775c5ea70f9516 (diff)
downloadmariadb-git-ff329207192022626518cae27c27f33c70701880.tar.gz
Bug#18775 - Temporary table from alter table visible to other threads
New test cases. Names with umlauts don't compare well on Windows.
Diffstat (limited to 'mysql-test/r/backup.result')
-rw-r--r--mysql-test/r/backup.result20
1 files changed, 10 insertions, 10 deletions
diff --git a/mysql-test/r/backup.result b/mysql-test/r/backup.result
index 05761240ca7..a4d1b18fe61 100644
--- a/mysql-test/r/backup.result
+++ b/mysql-test/r/backup.result
@@ -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üten`;
-CREATE TABLE `t-blüten` (c1 INT);
-INSERT INTO `t-blüten` VALUES (1), (2), (3);
-BACKUP TABLE `t-blü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ü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üten`;
-RESTORE TABLE `t-blüten` FROM '../tmp';
+DROP TABLE `t+1`;
+RESTORE TABLE `t+1` FROM '../tmp';
Table Op Msg_type Msg_text
-test.t-blü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üten`;
+SELECT * FROM `t+1`;
c1
1
2
3
-DROP TABLE `t-blüten`;
+DROP TABLE `t+1`;