summaryrefslogtreecommitdiff
path: root/plugin/type_inet/mysql-test/type_inet/type_inet4_mix_int.test
blob: fb65eb70b314fc78276f0c1460f1126fe0df5d5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--echo #
--echo # Start of 10.10 tests
--echo #

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

CREATE TABLE t1 (target INET4 DEFAULT '0.0.0.0', source INT DEFAULT 0);
--source include/type_mix_incompatible.inc
DROP TABLE t1;

CREATE TABLE t1 (target INT DEFAULT 0, source INET4 DEFAULT '0.0.0.0');
--source include/type_mix_incompatible.inc
DROP TABLE t1;

--echo #
--echo # End of 10.10 tests
--echo #