diff options
author | Sergei Golubchik <serg@mariadb.org> | 2018-02-21 18:26:22 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2018-02-24 00:50:56 +0100 |
commit | 62b5427394b7e310e6d0e750468290a23714840e (patch) | |
tree | 40d4651bccc8c2146a9e9190d2acca5c74913b7d /mysql-test/suite/versioning/r | |
parent | dfb6f96eaf6a94cfa4f0f508136a190ac22fd381 (diff) | |
download | mariadb-git-62b5427394b7e310e6d0e750468290a23714840e.tar.gz |
cannot rotate both by INTERVAL and LIMIT
Diffstat (limited to 'mysql-test/suite/versioning/r')
-rw-r--r-- | mysql-test/suite/versioning/r/partition.result | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/suite/versioning/r/partition.result b/mysql-test/suite/versioning/r/partition.result index c476e948574..70b955802b0 100644 --- a/mysql-test/suite/versioning/r/partition.result +++ b/mysql-test/suite/versioning/r/partition.result @@ -281,6 +281,11 @@ ERROR 42000: You have an error in your SQL syntax; check the manual that corresp partition p0 history, partition p1 history, partition pn current)' at line 3 +create table t1 (i int) with system versioning +partition by system_time interval 6 day limit 98 +(partition p0 history, partition ver_pn current); +ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'limit 98 +(partition p0 history, partition ver_pn current)' at line 2 ### ha_partition::update_row() check create or replace table t1 (x int) with system versioning |