diff options
author | mikron@mikael-ronstr-ms-dator.local <> | 2007-04-04 16:26:32 +0200 |
---|---|---|
committer | mikron@mikael-ronstr-ms-dator.local <> | 2007-04-04 16:26:32 +0200 |
commit | 8161ab0b53fc14e43522580546144addf89bbc74 (patch) | |
tree | 7f36026b3c607a96747be7d8bf8e777a117b52b0 /mysql-test/r/partition_error.result | |
parent | ae27eeea581228aac1c226e299fb1b46eb470f0f (diff) | |
download | mariadb-git-8161ab0b53fc14e43522580546144addf89bbc74.tar.gz |
Reapplied patch for bug18198
Diffstat (limited to 'mysql-test/r/partition_error.result')
-rw-r--r-- | mysql-test/r/partition_error.result | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/partition_error.result b/mysql-test/r/partition_error.result index 4b01b759902..41829216178 100644 --- a/mysql-test/r/partition_error.result +++ b/mysql-test/r/partition_error.result @@ -25,7 +25,7 @@ partitions 3 (partition x1 values in (1,2,9,4) tablespace ts1, partition x2 values in (3, 11, 5, 7) tablespace ts2, partition x3 values in (16, 8, 5+19, 70-43) tablespace ts3); -ERROR HY000: The PARTITION function returns the wrong type +ERROR HY000: This partition function is not allowed CREATE TABLE t1 ( a int not null, b int not null, @@ -89,7 +89,7 @@ partitions 3 (partition x1 tablespace ts1, partition x2 tablespace ts2, partition x3 tablespace ts3); -ERROR HY000: The PARTITION function returns the wrong type +ERROR HY000: This partition function is not allowed CREATE TABLE t1 ( a int not null, b int not null, @@ -422,7 +422,7 @@ partition by range (sin(a)) partitions 2 (partition x1 values less than (4), partition x2 values less than (5)); -ERROR HY000: The PARTITION function returns the wrong type +ERROR HY000: This partition function is not allowed CREATE TABLE t1 ( a int not null, b int not null, @@ -619,4 +619,4 @@ partition by range (a + (select count(*) from t1)) ERROR HY000: This partition function is not allowed create table t1 (a char(10)) partition by hash (extractvalue(a,'a')); -ERROR HY000: The PARTITION function returns the wrong type +ERROR HY000: This partition function is not allowed |