diff options
author | unknown <mikael@c-bc0be253.1238-1-64736c10.cust.bredbandsbolaget.se> | 2006-03-28 17:41:50 -0500 |
---|---|---|
committer | unknown <mikael@c-bc0be253.1238-1-64736c10.cust.bredbandsbolaget.se> | 2006-03-28 17:41:50 -0500 |
commit | 6f2d033ca7d0e84f9fc7f40b5fcdc609fe0e220b (patch) | |
tree | 48ef83bccd22769a8db0180a1a588f4f4cf1da49 /mysql-test/r | |
parent | c5515cc6ab620bd2c423618d123e1ee3276978e2 (diff) | |
download | mariadb-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.result | 10 |
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 |