mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Fixing versioning.insert and versioning.replace test failes.
Tests started to fail after a merge of MDEV-15107 (from bb-10.2-ext to 10.3), because MDEV-15107 additionally fixed this problem: MDEV-15112 Inconsistent evaluation of spvariable=0 in strict mode Modifying tests not to reply on the pre-MDEV-15112 behavior.
This commit is contained in:
@@ -225,7 +225,7 @@ create or replace table t1 (
|
||||
period for system_time(s, e))
|
||||
with system versioning;
|
||||
insert into t1 values (1, null, null, 'foo');
|
||||
select i, c, current_row(e) from t1;
|
||||
select i, c, e>TIMESTAMP'2038-01-01 00:00:00' AS current_row from t1;
|
||||
|
||||
drop table t1;
|
||||
drop table t2;
|
||||
|
@@ -6,7 +6,7 @@ call create_table('t', 'x int');
|
||||
|
||||
insert t values (1, 2);
|
||||
replace t values (1, 3);
|
||||
select *, current_row(row_end) as current from t for system_time all
|
||||
select *, row_end>TIMESTAMP'2038-01-01 00:00:00' as current from t for system_time all
|
||||
order by x;
|
||||
|
||||
drop database test;
|
||||
|
Reference in New Issue
Block a user