summaryrefslogtreecommitdiff
path: root/mysql-test/r/backup.result
diff options
context:
space:
mode:
authorunknown <ingo/istruewing@chilla.local>2006-08-03 08:12:56 +0200
committerunknown <ingo/istruewing@chilla.local>2006-08-03 08:12:56 +0200
commitce4b9c82daad6662400d64f4113e2b2700166af7 (patch)
treef80f701a9a5b1d2adae1066da882c6efe6d2ece6 /mysql-test/r/backup.result
parentefcf996f88d2764f7a9c96971cd573cf2a01161a (diff)
downloadmariadb-git-ce4b9c82daad6662400d64f4113e2b2700166af7.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. mysql-test/r/alter_table.result: Bug#18775 - Temporary table from alter table visible to other threads New test results mysql-test/r/backup.result: Bug#18775 - Temporary table from alter table visible to other threads New test results mysql-test/t/alter_table.test: Bug#18775 - Temporary table from alter table visible to other threads New test case. Names with umlauts don't compare well on Windows. mysql-test/t/backup.test: Bug#18775 - Temporary table from alter table visible to other threads New test case. 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`;