Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.5
-
None
Description
create table t1 (a inet6) engine=CONNECT table_type=DOS FILE_NAME='t1.dos'; |
insert into t1 values ('::'); |
select * from t1; |
10.5 41fe972d |
MariaDB [test]> select * from t1; |
+------+ |
| a |
|
+------+ |
| :: |
|
+------+ |
1 row in set, 2 warnings (0.000 sec) |
 |
MariaDB [test]> show warnings;
|
+---------+------+-----------------------------------------------------------------+ |
| Level | Code | Message | |
+---------+------+-----------------------------------------------------------------+ |
| Warning | 1292 | Incorrect inet6 value: '::' for column `test`.`t1`.`a` at row 1 | |
| Warning | 1105 | Out of range value :: for column 'a' at row 1 | |
+---------+------+-----------------------------------------------------------------+ |
2 rows in set (0.000 sec) |
Attachments
Issue Links
- relates to
-
MDEV-274 The data type for IPv6/IPv4 addresses in MariaDB
- Closed
-
MDEV-20784 Testing for MDEV-274 (INET6, data type for IPv6/IPv4 addresses)
- Closed