summaryrefslogtreecommitdiff
path: root/storage/connect/mysql-test/connect/r/type_inet6.result
diff options
context:
space:
mode:
Diffstat (limited to 'storage/connect/mysql-test/connect/r/type_inet6.result')
-rw-r--r--storage/connect/mysql-test/connect/r/type_inet6.result15
1 files changed, 15 insertions, 0 deletions
diff --git a/storage/connect/mysql-test/connect/r/type_inet6.result b/storage/connect/mysql-test/connect/r/type_inet6.result
new file mode 100644
index 00000000000..495a7a515b7
--- /dev/null
+++ b/storage/connect/mysql-test/connect/r/type_inet6.result
@@ -0,0 +1,15 @@
+#
+# MDEV-21764 CONNECT table with INET6 field produces warnings upon SELECT
+#
+CREATE TABLE t1 (a INET6) ENGINE=CONNECT TABLE_TYPE=DOS;
+Warnings:
+Warning 1105 No file name. Table will use t1.dos
+INSERT INTO t1 VALUES ('::');
+INSERT INTO t1 VALUES ('::ffff');
+INSERT INTO t1 VALUES ('ffff::ffff');
+SELECT * FROM t1;
+a
+::
+::ffff
+ffff::ffff
+DROP TABLE t1;