diff options
author | unknown <ingo/istruewing@chilla.local> | 2006-08-03 08:12:56 +0200 |
---|---|---|
committer | unknown <ingo/istruewing@chilla.local> | 2006-08-03 08:12:56 +0200 |
commit | ce4b9c82daad6662400d64f4113e2b2700166af7 (patch) | |
tree | f80f701a9a5b1d2adae1066da882c6efe6d2ece6 /mysql-test/r/backup.result | |
parent | efcf996f88d2764f7a9c96971cd573cf2a01161a (diff) | |
download | mariadb-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.result | 20 |
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`; |