1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

MDEV-35160 RBR does not work with vector type, ER_SLAVE_CONVERSION_FAILED

This commit is contained in:
Sergei Golubchik
2024-10-16 17:41:56 +02:00
parent 8f49fb8cc3
commit db10e5cf6c
4 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
--source include/have_binlog_format_row.inc
--source include/master-slave.inc
--echo #
--echo # MDEV-35160 RBR does not work with vector type, ER_SLAVE_CONVERSION_FAILED
--echo #
create table t (pk int primary key, a vector(1) not null);
insert into t values (1, 0x00000000);
--sync_slave_with_master
select pk, vec_totext(a) from t;
--connection master
drop table t;
--source include/rpl_end.inc