mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Partition: uninitialized vers_info fix
This commit is contained in:
@ -18,14 +18,18 @@ x
|
||||
delete from t1;
|
||||
select * from t1;
|
||||
x
|
||||
select * from t1 partition (p0);
|
||||
x
|
||||
select * from t1 partition (p1);
|
||||
x
|
||||
select * from t1 for system_time all;
|
||||
x
|
||||
3
|
||||
300
|
||||
select * from t1 partition (p0);
|
||||
select * from t1 partition (p0) for system_time all;
|
||||
x
|
||||
3
|
||||
select * from t1 partition (p1);
|
||||
select * from t1 partition (p1) for system_time all;
|
||||
x
|
||||
300
|
||||
# Engine change native <-> non-native versioning prohibited
|
||||
|
@ -16,9 +16,11 @@ select * from t1 partition (p1);
|
||||
|
||||
delete from t1;
|
||||
select * from t1;
|
||||
select * from t1 for system_time all;
|
||||
select * from t1 partition (p0);
|
||||
select * from t1 partition (p1);
|
||||
select * from t1 for system_time all;
|
||||
select * from t1 partition (p0) for system_time all;
|
||||
select * from t1 partition (p1) for system_time all;
|
||||
|
||||
--echo # Engine change native <-> non-native versioning prohibited
|
||||
--replace_result $default_engine DEFAULT_ENGINE
|
||||
|
Reference in New Issue
Block a user