summaryrefslogtreecommitdiff
path: root/mysql-test/r
diff options
context:
space:
mode:
authorunknown <mikael@c-bc0be253.1238-1-64736c10.cust.bredbandsbolaget.se>2006-03-28 17:41:50 -0500
committerunknown <mikael@c-bc0be253.1238-1-64736c10.cust.bredbandsbolaget.se>2006-03-28 17:41:50 -0500
commit6f2d033ca7d0e84f9fc7f40b5fcdc609fe0e220b (patch)
tree48ef83bccd22769a8db0180a1a588f4f4cf1da49 /mysql-test/r
parentc5515cc6ab620bd2c423618d123e1ee3276978e2 (diff)
downloadmariadb-git-6f2d033ca7d0e84f9fc7f40b5fcdc609fe0e220b.tar.gz
BUG#13520: BUG#13433: Fixed proper delimiters for fields and comments
mysql-test/r/partition.result: New test cases mysql-test/t/partition.test: New test cases sql/sql_partition.cc: Fixed proper delimiters for fields and comments
Diffstat (limited to 'mysql-test/r')
-rw-r--r--mysql-test/r/partition.result10
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/r/partition.result b/mysql-test/r/partition.result
index 7244dd6ccbf..0b7e6841f71 100644
--- a/mysql-test/r/partition.result
+++ b/mysql-test/r/partition.result
@@ -718,4 +718,14 @@ CALL test.p1(13);
Warnings:
Warning 1196 Some non-transactional changed tables couldn't be rolled back
drop table t1;
+CREATE TABLE t1 (a int not null)
+partition by key(a)
+(partition p0 COMMENT='first partition');
+drop table t1;
+CREATE TABLE t1 (`a b` int not null)
+partition by key(`a b`);
+drop table t1;
+CREATE TABLE t1 (`a b` int not null)
+partition by hash(`a b`);
+drop table t1;
End of 5.1 tests