diff options
author | Mattias Jonsson <mattias.jonsson@oracle.com> | 2011-01-10 16:13:12 +0100 |
---|---|---|
committer | Mattias Jonsson <mattias.jonsson@oracle.com> | 2011-01-10 16:13:12 +0100 |
commit | 0df98f62c33e946f5370ea15ab27d2f332b37631 (patch) | |
tree | c809ee08b9dea321d1be479cd64005fbd244a3c1 /mysql-test/t/partition_range.test | |
parent | b56308e63d74c619c4fe8b765c3745e728d804c8 (diff) | |
parent | 296d494e661ec181763a72b32154d0f29493259c (diff) | |
download | mariadb-git-0df98f62c33e946f5370ea15ab27d2f332b37631.tar.gz |
merge
Diffstat (limited to 'mysql-test/t/partition_range.test')
-rw-r--r-- | mysql-test/t/partition_range.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/partition_range.test b/mysql-test/t/partition_range.test index 4e2c1b98a70..3ff03248d88 100644 --- a/mysql-test/t/partition_range.test +++ b/mysql-test/t/partition_range.test @@ -30,8 +30,8 @@ DROP TABLE t1; # #BUG#49591, Add proper version number to SHOW CREATE TABLE # -create table t1 (a int) -partition by range (a) +create table t1 (a DATETIME) +partition by range (TO_DAYS(a)) subpartition by hash(to_seconds(a)) (partition p0 values less than (1)); show create table t1; |