mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge 10.4 into 10.5
This commit is contained in:
@ -228,6 +228,21 @@ for system_time all as t;
|
||||
create or replace table t1 (x int) with system versioning engine myisam;
|
||||
--error ER_VERS_ENGINE_UNSUPPORTED
|
||||
select * from t1 for system_time as of transaction 1;
|
||||
--echo # MDEV-18929 2nd execution of SP does not detect ER_VERS_NOT_VERSIONED
|
||||
create or replace procedure sp()
|
||||
select * from t1 for system_time as of transaction 1;
|
||||
--error ER_VERS_ENGINE_UNSUPPORTED
|
||||
call sp;
|
||||
--error ER_VERS_ENGINE_UNSUPPORTED
|
||||
call sp;
|
||||
create or replace table t1 (a int);
|
||||
create or replace procedure sp()
|
||||
select * from t1 for system_time all;
|
||||
--error ER_VERS_NOT_VERSIONED
|
||||
call sp;
|
||||
--error ER_VERS_NOT_VERSIONED
|
||||
call sp;
|
||||
drop procedure sp;
|
||||
|
||||
create or replace table t1 (
|
||||
x int,
|
||||
|
Reference in New Issue
Block a user