mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
SQL: error messages
remove unused error messages reword ER_VERS_SYS_FIELD_NOT_HIDDEN->ER_VERS_SYS_FIELD_EXISTS
This commit is contained in:
committed by
Aleksey Midenkov
parent
e6a7457653
commit
35b679b924
@ -206,7 +206,8 @@ ERROR HY000: Table `t1` is not system-versioned
|
||||
create or replace table t1 (x int) with system versioning;
|
||||
insert into t1 values (1);
|
||||
select * from t1 for system_time all for update;
|
||||
ERROR HY000: Versioned SELECT write-locking of history rows
|
||||
x
|
||||
1
|
||||
create or replace table t1 (a int not null auto_increment primary key) with system versioning;
|
||||
select * from (t1 as t2 left join t1 as t3 using (a)) natural left join t1;
|
||||
a
|
||||
|
Reference in New Issue
Block a user