mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
14 lines
442 B
Text
14 lines
442 B
Text
include/master-slave.inc
|
|
[connection master]
|
|
# MDEV-16252: MINIMAL binlog_row_image does not work for versioned tables
|
|
set @old_row_image= @@binlog_row_image;
|
|
set binlog_row_image= minimal;
|
|
create or replace table t1 (pk int, i int, primary key(pk))
|
|
with system versioning;
|
|
insert into t1 values (1,10),(2,20);
|
|
update t1 set i = 0;
|
|
connection slave;
|
|
connection master;
|
|
drop table t1;
|
|
set binlog_row_image= @old_row_image;
|
|
include/rpl_end.inc
|