summaryrefslogtreecommitdiff
path: root/mysql-test/r/partition_error.result
diff options
context:
space:
mode:
authorunknown <pappa@c-8b0ae253.1238-1-64736c10.cust.bredbandsbolaget.se>2005-07-22 15:17:05 -0400
committerunknown <pappa@c-8b0ae253.1238-1-64736c10.cust.bredbandsbolaget.se>2005-07-22 15:17:05 -0400
commitb6f97cb42c8734ce94893dfa001c493d3d2502a0 (patch)
tree192d6948910b69e1eb5e8021dc1e09dbcd5addda /mysql-test/r/partition_error.result
parenta51a1f088bb63cbed5d03ecc4c8be3cd468c1a3c (diff)
downloadmariadb-git-b6f97cb42c8734ce94893dfa001c493d3d2502a0.tar.gz
Bug #12097 More fixes
mysql-test/r/partition_error.result: Fixed result files after rearranging code a bit mysql-test/t/partition_error.test: Fixed result files after rearranging code a bit sql/share/errmsg.txt: Fixed result files after rearranging code a bit sql/sql_yacc.yy: Added initialisation
Diffstat (limited to 'mysql-test/r/partition_error.result')
-rw-r--r--mysql-test/r/partition_error.result6
1 files changed, 4 insertions, 2 deletions
diff --git a/mysql-test/r/partition_error.result b/mysql-test/r/partition_error.result
index cb7c9b8c26e..58c42888ae7 100644
--- a/mysql-test/r/partition_error.result
+++ b/mysql-test/r/partition_error.result
@@ -290,7 +290,8 @@ partition by range (a)
partitions 2
(partition x1 values less than (4.0) tablespace ts1,
partition x2 values less than (8) tablespace ts2);
-ERROR HY000: VALUES LESS THAN value must be of same type as partition function
+ERROR 42000: VALUES value must be of same type as partition function near ') tablespace ts1,
+partition x2 values less than (8) tablespace ts2)' at line 8
CREATE TABLE t1 (
a int not null,
b int not null,
@@ -530,7 +531,8 @@ partition by list (a)
partitions 2
(partition x1 values in (4.0, 12+8),
partition x2 values in (3, 21));
-ERROR HY000: VALUES IN value must be of same type as partition function
+ERROR 42000: VALUES value must be of same type as partition function near ' 12+8),
+partition x2 values in (3, 21))' at line 8
CREATE TABLE t1 (
a int not null,
b int not null,