summaryrefslogtreecommitdiff
path: root/mysql-test/t/backup.test
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/t/backup.test
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/t/backup.test')
-rw-r--r--mysql-test/t/backup.test16
1 files changed, 8 insertions, 8 deletions
diff --git a/mysql-test/t/backup.test b/mysql-test/t/backup.test
index fa6bbc21813..61bde0cecb0 100644
--- a/mysql-test/t/backup.test
+++ b/mysql-test/t/backup.test
@@ -65,15 +65,15 @@ drop table t5;
#
# Backup did not encode table names.
--disable_warnings
-DROP TABLE IF EXISTS `t-blüten`;
+DROP TABLE IF EXISTS `t+1`;
--enable_warnings
-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 `t-blüten`;
+CREATE TABLE `t+1` (c1 INT);
+INSERT INTO `t+1` VALUES (1), (2), (3);
+BACKUP TABLE `t+1` TO '../tmp';
+DROP TABLE `t+1`;
#
# Same for restore.
-RESTORE TABLE `t-blüten` FROM '../tmp';
-SELECT * FROM `t-blüten`;
-DROP TABLE `t-blüten`;
+RESTORE TABLE `t+1` FROM '../tmp';
+SELECT * FROM `t+1`;
+DROP TABLE `t+1`;