2
0

Add inet support

This commit is contained in:
Jack Christensen
2015-09-03 09:33:19 -05:00
parent a56e35ad0a
commit d494f83cd1
4 changed files with 119 additions and 0 deletions
+2
View File
@@ -751,6 +751,8 @@ func (c *Conn) sendPreparedQuery(ps *PreparedStatement, arguments ...interface{}
err = encodeTimestampTz(wbuf, arguments[i])
case TimestampOid:
err = encodeTimestamp(wbuf, arguments[i])
case InetOid:
err = encodeInet(wbuf, arguments[i])
case BoolArrayOid:
err = encodeBoolArray(wbuf, arguments[i])
case Int2ArrayOid: