diff options
author | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2019-12-03 14:34:12 +0200 |
---|---|---|
committer | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2019-12-03 14:34:12 +0200 |
commit | 2daacddf6be8c3e796f403409ca3e80fd1ceda8f (patch) | |
tree | 11bcd2eedefa3d3e02204dba47a64d469e686556 /mysql-test | |
parent | abbff37eb4f849532a01941c869db3384f772639 (diff) | |
download | mariadb-git-2daacddf6be8c3e796f403409ca3e80fd1ceda8f.tar.gz |
Update versioning.alter after typo fix
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/suite/versioning/r/alter.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/versioning/r/alter.result b/mysql-test/suite/versioning/r/alter.result index 532412e3574..53e169812b4 100644 --- a/mysql-test/suite/versioning/r/alter.result +++ b/mysql-test/suite/versioning/r/alter.result @@ -528,9 +528,9 @@ ERROR HY000: Table `t` is already system-versioned # use mysql; create or replace table t (x int) with system versioning; -ERROR HY000: System versioning tables in the `mysql` database are not suported +ERROR HY000: System versioning tables in the `mysql` database are not supported alter table user add system versioning; -ERROR HY000: System versioning tables in the `mysql` database are not suported +ERROR HY000: System versioning tables in the `mysql` database are not supported use test; # MDEV-15956 Strange ER_UNSUPPORTED_ACTION_ON_GENERATED_COLUMN upon ALTER on versioning column create or replace table t1 (i int, j int as (i), s timestamp(6) as row start, e timestamp(6) as row end, period for system_time(s,e)) with system versioning; |