summaryrefslogtreecommitdiff
path: root/plugin/type_inet/mysql-test/type_inet/rpl_type_inet4.test
blob: af9f6eee54f372e886acbb7eb8786c6267b245c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--source include/master-slave.inc

--echo #
--echo # Start of 10.10 tests
--echo #

--echo #
--echo # MDEV-23287 The INET4 data type
--echo #

connection master;
CREATE TABLE t1 (a INET4);
INSERT INTO t1 VALUES ('0.0.0.0'),('255.255.255.255');
sync_slave_with_master;
SELECT HEX(a), a FROM t1;
connection master;
DROP TABLE t1;
sync_slave_with_master;

--echo #
--echo # Start of 10.10 tests
--echo #

--source include/rpl_end.inc