mirror of https://github.com/jackc/pgx.git
Remove unused pgtype.Map field
parent
ec8f7c4204
commit
e7f90ba6e4
|
@ -175,7 +175,6 @@ type Map struct {
|
|||
nameToType map[string]*Type
|
||||
reflectTypeToName map[reflect.Type]string
|
||||
oidToFormatCode map[uint32]int16
|
||||
oidToResultFormatCode map[uint32]int16
|
||||
|
||||
reflectTypeToType map[reflect.Type]*Type
|
||||
|
||||
|
@ -200,7 +199,6 @@ func NewMap() *Map {
|
|||
nameToType: make(map[string]*Type),
|
||||
reflectTypeToName: make(map[reflect.Type]string),
|
||||
oidToFormatCode: make(map[uint32]int16),
|
||||
oidToResultFormatCode: make(map[uint32]int16),
|
||||
|
||||
memoizedScanPlans: make(map[uint32]map[reflect.Type][2]ScanPlan),
|
||||
|
||||
|
|
Loading…
Reference in New Issue