summaryrefslogtreecommitdiffstats
path: root/plugin/type_inet/mysql-test/type_inet/type_inet6-debug.test
blob: ef5ea8363f276a4965bbd8897b7f1a43db0b3fb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--source include/have_debug.inc

--echo #
--echo # MDEV-274 The data type for IPv6/IPv4 addresses in MariaDB
--echo #

SET @old_debug_dbug=@@debug_dbug;

SET debug_dbug="+d,frm_data_type_info";
CREATE TABLE t1 (c01 INET6, c02 INET6);
SET debug_dbug=@old_debug_dbug;

SHOW CREATE TABLE t1;
DROP TABLE t1;