Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 10.0, 10.1, 10.1.25, 10.0.32, 10.2.7, 10.2
-
Component/s: Data types, Stored routines
-
Labels:
-
Environment:Centos 7
-
Sprint:10.2.11
Description
The following code snippet was working for me in version 10.2.6. But I saw issues in version 10.2.9, where the variable "ip_full_addr" is returning null instead of expected value 2000::
DECLARE ip_full_addr varchar(39) DEFAULT ""; |
SELECT INET6_NTOA(UNHEX('20000000000000000000000000000000')) into ip_full_addr; |
SELECT ip_full_addr; |