1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

MDEV-14764 Confusing error message: Table t1 must have at least one temporal column

compiler warning (mix of bool and enum in ?:)
This commit is contained in:
Sergei Golubchik
2017-12-27 15:16:17 +01:00
committed by Aleksey Midenkov
parent 5dddbafa4e
commit 1a0b986e78
4 changed files with 4 additions and 4 deletions

View File

@@ -164,7 +164,7 @@ x21 int without system versioning
create or replace table t1 (
x22 int without system versioning
) with system versioning;
ERROR HY000: Table `t1` must have at least one temporal column
ERROR HY000: Table `t1` must have at least one versioned column
create or replace table t1 (a int) with system versioning;
create table tt1 like t1;
show create table tt1;