File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
plugin/type_inet/mysql-test/type_inet Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -2250,11 +2250,14 @@ Warnings:
2250
2250
Warning 1292 Truncated incorrect max_sort_length value: '4'
2251
2251
CREATE TEMPORARY TABLE t1(c INET6,d DATE);
2252
2252
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
2254
2256
INSERT INTO t1 VALUES('::',0);
2255
2257
SELECT c FROM t1 ORDER BY c;
2256
2258
c
2257
2259
::
2260
+ ::
2258
2261
DROP TABLE t1;
2259
2262
SET max_sort_length=DEFAULT;
2260
2263
SET sql_mode=DEFAULT;
Original file line number Diff line number Diff line change @@ -1652,7 +1652,6 @@ DROP TABLE t1, t2;
1652
1652
SET sql_mode='';
1653
1653
SET @@SESSION.max_sort_length=4;
1654
1654
CREATE TEMPORARY TABLE t1(c INET6,d DATE);
1655
- --error ER_ILLEGAL_PARAMETER_DATA_TYPES2_FOR_OPERATION
1656
1655
INSERT INTO t1 VALUES(0,0);
1657
1656
INSERT INTO t1 VALUES('::',0);
1658
1657
SELECT c FROM t1 ORDER BY c;
You can’t perform that action at this time.
0 commit comments