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:
14
mysql-test/suite/rpl/r/vector.result
Normal file
14
mysql-test/suite/rpl/r/vector.result
Normal 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
|
Reference in New Issue
Block a user