1
0
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:
Aleksey Midenkov
2017-12-22 16:39:28 +03:00
parent 9cbf9e3b92
commit ea49441c41
3 changed files with 10 additions and 4 deletions

View File

@ -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

View File

@ -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