Fix data race in domain handling

domains
Jack Christensen 2018-04-07 14:26:26 -05:00
parent db7df79e10
commit 6556ef67cb
1 changed files with 2 additions and 2 deletions

View File

@ -503,7 +503,7 @@ where t.typtype = 'b'
func (c *Conn) initConnInfoDomains(cinfo *pgtype.ConnInfo) error {
type domain struct {
oid pgtype.OID
name string
name pgtype.Text
baseOID pgtype.OID
}
@ -536,7 +536,7 @@ where t.typtype = 'd'
if ok {
cinfo.RegisterDataType(pgtype.DataType{
Value: reflect.New(reflect.ValueOf(baseDataType.Value).Elem().Type()).Interface().(pgtype.Value),
Name: d.name,
Name: d.name.String,
OID: d.oid,
})
}