summaryrefslogtreecommitdiff
path: root/plugin/type_inet/mysql-test/type_inet/type_inet4-debug.result
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/type_inet/mysql-test/type_inet/type_inet4-debug.result')
-rw-r--r--plugin/type_inet/mysql-test/type_inet/type_inet4-debug.result24
1 files changed, 24 insertions, 0 deletions
diff --git a/plugin/type_inet/mysql-test/type_inet/type_inet4-debug.result b/plugin/type_inet/mysql-test/type_inet/type_inet4-debug.result
new file mode 100644
index 00000000000..db0eb4332e9
--- /dev/null
+++ b/plugin/type_inet/mysql-test/type_inet/type_inet4-debug.result
@@ -0,0 +1,24 @@
+#
+# Start of 10.10 tests
+#
+#
+# MDEV-23287 The INET4 data type
+#
+SET @old_debug_dbug=@@debug_dbug;
+SET debug_dbug="+d,frm_data_type_info";
+CREATE TABLE t1 (c01 INET4, c02 INET4);
+Warnings:
+Note 1105 build_frm_image: Field data type info length: 14
+Note 1105 DBUG: [0] name='c01' type_info='inet4'
+Note 1105 DBUG: [1] name='c02' type_info='inet4'
+SET debug_dbug=@old_debug_dbug;
+SHOW CREATE TABLE t1;
+Table Create Table
+t1 CREATE TABLE `t1` (
+ `c01` inet4 DEFAULT NULL,
+ `c02` inet4 DEFAULT NULL
+) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
+DROP TABLE t1;
+#
+# End of 10.10 tests
+#