mirror of
https://github.com/MariaDB/server.git
synced 2025-11-10 23:02:54 +03:00
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.
14 lines
340 B
Plaintext
14 lines
340 B
Plaintext
--source suite/versioning/common.inc
|
|
--source suite/versioning/key_type.inc
|
|
--source suite/versioning/engines.inc
|
|
|
|
call create_table('t', 'x int');
|
|
|
|
insert t values (1, 2);
|
|
replace t values (1, 3);
|
|
select *, row_end>TIMESTAMP'2038-01-01 00:00:00' as current from t for system_time all
|
|
order by x;
|
|
|
|
drop database test;
|
|
create database test;
|