Skip to content

Commit adddde7

Browse files
committed
Merge branch 'bb-10.8-release' into bb-10.9-release
2 parents 564d374 + fccbe2b commit adddde7

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

plugin/type_inet/mysql-test/type_inet/type_inet6.result

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2250,11 +2250,14 @@ Warnings:
22502250
Warning 1292 Truncated incorrect max_sort_length value: '4'
22512251
CREATE TEMPORARY TABLE t1(c INET6,d DATE);
22522252
INSERT INTO t1 VALUES(0,0);
2253-
ERROR HY000: Illegal parameter data types inet6 and int for operation 'SET'
2253+
Warnings:
2254+
Warning 4078 Cannot cast 'int' as 'inet6' in assignment of `test`.`t1`.`c`
2255+
Warning 1292 Incorrect inet6 value: '0' for column `test`.`t1`.`c` at row 1
22542256
INSERT INTO t1 VALUES('::',0);
22552257
SELECT c FROM t1 ORDER BY c;
22562258
c
22572259
::
2260+
::
22582261
DROP TABLE t1;
22592262
SET max_sort_length=DEFAULT;
22602263
SET sql_mode=DEFAULT;

plugin/type_inet/mysql-test/type_inet/type_inet6.test

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1652,7 +1652,6 @@ DROP TABLE t1, t2;
16521652
SET sql_mode='';
16531653
SET @@SESSION.max_sort_length=4;
16541654
CREATE TEMPORARY TABLE t1(c INET6,d DATE);
1655-
--error ER_ILLEGAL_PARAMETER_DATA_TYPES2_FOR_OPERATION
16561655
INSERT INTO t1 VALUES(0,0);
16571656
INSERT INTO t1 VALUES('::',0);
16581657
SELECT c FROM t1 ORDER BY c;

0 commit comments

Comments
 (0)