summaryrefslogtreecommitdiff
path: root/mysql-test/r
diff options
context:
space:
mode:
authorunknown <ram@gw.mysql.r18.ru>2003-11-05 12:06:03 +0400
committerunknown <ram@gw.mysql.r18.ru>2003-11-05 12:06:03 +0400
commit61e682b8adafdfae736327fee4ea0263e1a0bd37 (patch)
tree2d0656f9ae3563875383d268926679fb3b32d956 /mysql-test/r
parentabffab882e73596d09d058c6cbb3df0e5089ae60 (diff)
downloadmariadb-git-61e682b8adafdfae736327fee4ea0263e1a0bd37.tar.gz
Portability fix (for example NetWare doesn't support table name like t"1").
Diffstat (limited to 'mysql-test/r')
-rw-r--r--mysql-test/r/mysqldump.result10
1 files changed, 5 insertions, 5 deletions
diff --git a/mysql-test/r/mysqldump.result b/mysql-test/r/mysqldump.result
index 27c2f8d6304..4025a01bc93 100644
--- a/mysql-test/r/mysqldump.result
+++ b/mysql-test/r/mysqldump.result
@@ -43,15 +43,15 @@ INSERT INTO t1 VALUES (1, "test", "tes"), (2, "TEST", "TES");
</database>
</mysqldump>
DROP TABLE t1;
-CREATE TABLE `"t"1` (`a"b"` char(2));
-INSERT INTO `"t"1` VALUES ("1\""), ("\"2");
+CREATE TABLE t1 (`a"b"` char(2));
+INSERT INTO t1 VALUES ("1\""), ("\"2");
<?xml version="1.0"?>
<mysqldump>
<database name="test">
- <table_structure name="&quot;t&quot;1">
+ <table_structure name="t1">
<field Field="a&quot;b&quot;" Type="char(2)" Null="YES" Key="" Extra="" />
</table_structure>
- <table_data name="&quot;t&quot;1">
+ <table_data name="t1">
<row>
<field name="a&quot;b&quot;">1&quot;</field>
</row>
@@ -61,4 +61,4 @@ INSERT INTO `"t"1` VALUES ("1\""), ("\"2");
</table_data>
</database>
</mysqldump>
-DROP TABLE `"t"1`;
+DROP TABLE t1;