summaryrefslogtreecommitdiff
path: root/mysql-test/t/partition_error.test
diff options
context:
space:
mode:
authormikael@dator6.(none) <>2007-06-13 17:28:59 +0200
committermikael@dator6.(none) <>2007-06-13 17:28:59 +0200
commit4ab5e26d933b240a48d7fe04f51e20a47ce19af5 (patch)
tree042f563a659cfeeaffb727a1021e7e4b47147a1f /mysql-test/t/partition_error.test
parentc7f0c9101295aaf8dcee2dc87ec73f5928576ab8 (diff)
downloadmariadb-git-4ab5e26d933b240a48d7fe04f51e20a47ce19af5.tar.gz
Disabled ascii-function
Diffstat (limited to 'mysql-test/t/partition_error.test')
-rw-r--r--mysql-test/t/partition_error.test3
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/t/partition_error.test b/mysql-test/t/partition_error.test
index fa5055b2981..5fc2097cc52 100644
--- a/mysql-test/t/partition_error.test
+++ b/mysql-test/t/partition_error.test
@@ -769,10 +769,11 @@ partition by range (a)
#
# Bug 18198 Partitions: Verify that erroneus partition functions doesn't work
#
+-- error ER_PARTITION_FUNCTION_IS_NOT_ALLOWED
create table t1 (v varchar(12))
partition by range (ascii(v))
(partition p0 values less than (10));
-drop table t1;
+#drop table t1;
-- error 1064
create table t1 (a int)