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