1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +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,14 @@
include/master-slave.inc
[connection master]
#
# MDEV-35160 RBR does not work with vector type, ER_SLAVE_CONVERSION_FAILED
#
create table t (pk int primary key, a vector(1) not null);
insert into t values (1, 0x00000000);
connection slave;
select pk, vec_totext(a) from t;
pk vec_totext(a)
1 [0]
connection master;
drop table t;
include/rpl_end.inc