From 57b3037e96fc06e32354c48666b1986a06abf034 Mon Sep 17 00:00:00 2001 From: Manni Wood Date: Sat, 10 Sep 2016 14:49:39 -0400 Subject: [PATCH] Adds tid oid --- values.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/values.go b/values.go index de5bcfd5..04c66317 100644 --- a/values.go +++ b/values.go @@ -22,6 +22,7 @@ const ( Int4Oid = 23 TextOid = 25 OidOid = 26 + TidOid = 27 XidOid = 28 CidOid = 29 JsonOid = 114 @@ -95,6 +96,7 @@ func init() { "int4": BinaryFormatCode, "int8": BinaryFormatCode, "oid": BinaryFormatCode, + "tid": BinaryFormatCode, "xid": BinaryFormatCode, "cid": BinaryFormatCode, "record": BinaryFormatCode,