mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge branch '10.4' into 10.5
This commit is contained in:
@@ -399,8 +399,19 @@ a check_row(row_start, row_end)
|
||||
1 CURRENT ROW
|
||||
drop tables t1, t2, t3;
|
||||
#
|
||||
# MDEV-26778 row_start is not updated in current row for InnoDB
|
||||
#
|
||||
create or replace table t1 (x int) with system versioning;
|
||||
insert t1 values (1);
|
||||
update t1 set x= 1;
|
||||
select row_start into @r from t1;
|
||||
select check_row_ts(row_start, row_end) from t1 for system_time all where row_start = @r;
|
||||
check_row_ts(row_start, row_end)
|
||||
CURRENT ROW
|
||||
drop table t1;
|
||||
#
|
||||
# MDEV-24522 Assertion `inited==NONE' fails upon UPDATE on versioned table with unique blob
|
||||
|
||||
#
|
||||
create table t1 (a int, b int, c text, unique(c), key (b)) engine=myisam with system versioning;
|
||||
insert into t1 values (1, 1, 'foo'), (2, 11, 'bar');
|
||||
update t1 set a = 3 where b <= 9;
|
||||
|
Reference in New Issue
Block a user