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

--echo #
--echo # MDEV-28918 Implicit cast from INET6 UNSIGNED works differently on UPDATE vs ALTER
--echo #

SET @ignore='IGNORE';

CREATE TABLE t1 (target INET6 DEFAULT '::0', source DOUBLE DEFAULT 0);
--source include/type_mix_incompatible.inc
DROP TABLE t1;

CREATE TABLE t1 (target DOUBLE DEFAULT 0, source INET6 DEFAULT '::0');
--source include/type_mix_incompatible.inc
DROP TABLE t1;

--echo #
--echo # End of 10.7 tests
--echo #