diff options
author | unknown <mikron@mikael-ronstr-ms-dator.local> | 2007-04-04 16:26:32 +0200 |
---|---|---|
committer | unknown <mikron@mikael-ronstr-ms-dator.local> | 2007-04-04 16:26:32 +0200 |
commit | f66a3c0427f15fc89d1fcc61b4c2339da9d037f7 (patch) | |
tree | 7f36026b3c607a96747be7d8bf8e777a117b52b0 /mysql-test/t/partition_mgm.test | |
parent | db1aa7e806bcb22aa47bf3f84f9328365ed2fd22 (diff) | |
download | mariadb-git-f66a3c0427f15fc89d1fcc61b4c2339da9d037f7.tar.gz |
Reapplied patch for bug18198
Diffstat (limited to 'mysql-test/t/partition_mgm.test')
-rw-r--r-- | mysql-test/t/partition_mgm.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/partition_mgm.test b/mysql-test/t/partition_mgm.test index 8458d47d634..a06f8d1aee5 100644 --- a/mysql-test/t/partition_mgm.test +++ b/mysql-test/t/partition_mgm.test @@ -20,7 +20,7 @@ subpartition sp01, subpartition sp02)); drop table t1; CREATE TABLE t1 (f_date DATE, f_varchar VARCHAR(30)) -PARTITION BY HASH(CAST(YEAR(f_date) AS SIGNED INTEGER)) PARTITIONS 2; +PARTITION BY HASH(YEAR(f_date)) PARTITIONS 2; SHOW CREATE TABLE t1; --replace_result $MYSQLTEST_VARDIR "hello" |