Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.5
-
None
Description
CREATE OR REPLACE TABLE t1 (id INT, a INET6) ENGINE=MyISAM; |
INSERT INTO t1 VALUES (1, 'fff::'),(1, '8888::'); |
SELECT MIN(a), MAX(a) FROM t1 GROUP BY id; |
+--------+--------+
|
| MIN(a) | MAX(a) |
|
+--------+--------+
|
| 8888:: | fff:: |
|
+--------+--------+
|
Looks wrong. The INET6 value '8888::' is greater than 'fff::'.
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