summaryrefslogtreecommitdiff
path: root/plugin/type_inet/mysql-test/type_inet/type_inet6-debug.result
blob: 2be7aca410796c938c425777c5de2ef130d2263e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# MDEV-274 The data type for IPv6/IPv4 addresses in MariaDB
#
SET @old_debug_dbug=@@debug_dbug;
SET debug_dbug="+d,frm_data_type_info";
CREATE TABLE t1 (c01 INET6, c02 INET6);
Warnings:
Note	1105	build_frm_image: Field data type info length: 14
Note	1105	DBUG: [0] name='c01' type_info='inet6'
Note	1105	DBUG: [1] name='c02' type_info='inet6'
SET debug_dbug=@old_debug_dbug;
SHOW CREATE TABLE t1;
Table	Create Table
t1	CREATE TABLE `t1` (
  `c01` inet6 DEFAULT NULL,
  `c02` inet6 DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
DROP TABLE t1;