2
0

Move Tid to pgtype

This commit is contained in:
Jack Christensen
2017-03-11 16:48:37 -06:00
parent f10ed4ff5d
commit 6694e0e618
7 changed files with 142 additions and 131 deletions
+7 -2
View File
@@ -16,7 +16,7 @@ const (
Int4OID = 23
TextOID = 25
OIDOID = 26
TidOID = 27
TIDOID = 27
XIDOID = 28
CIDOID = 29
JSONOID = 114
@@ -66,8 +66,13 @@ const (
NegativeInfinity InfinityModifier = -Infinity
)
type Value interface {
type Value interface{}
type ConverterFrom interface {
ConvertFrom(src interface{}) error
}
type AssignerTo interface {
AssignTo(dst interface{}) error
}