Saad Talaat - 2015-03-25

This case succeed for me,

postgres=# CREATE TABLE INET_TBL(c cidr, i inet);
CREATE TABLE
postgres=# INSERT INTO INET_TBL VALUES ('10:23::f1', '10:23::f1/64');
INSERT 0 1
postgres=# SELECT * FROM INET_TBL;
c | i
---------------+--------------
10:23::f1/128 | 10:23::f1/64
(1 row)