mirror of https://github.com/jackc/pgx.git
use normalized equality or strict equality check in rows.go fieldPosByName
parent
b25d092d20
commit
71a8e53574
22
rows.go
22
rows.go
|
@ -816,21 +816,21 @@ func computeNamedStructFields(
|
||||||
|
|
||||||
const structTagKey = "db"
|
const structTagKey = "db"
|
||||||
|
|
||||||
func fieldPosByName(fldDescs []pgconn.FieldDescription, field string, replace bool) (i int) {
|
func fieldPosByName(fldDescs []pgconn.FieldDescription, field string, normalize bool) (i int) {
|
||||||
i = -1
|
i = -1
|
||||||
if replace {
|
|
||||||
|
if normalize {
|
||||||
field = strings.ReplaceAll(field, "_", "")
|
field = strings.ReplaceAll(field, "_", "")
|
||||||
}
|
}
|
||||||
for i, desc := range fldDescs {
|
for i, desc := range fldDescs {
|
||||||
|
if normalize {
|
||||||
// Snake case support.
|
if strings.EqualFold(strings.ReplaceAll(desc.Name, "_", ""), field) {
|
||||||
descName := desc.Name
|
return i
|
||||||
if replace {
|
}
|
||||||
descName = strings.ReplaceAll(desc.Name, "_", "")
|
} else {
|
||||||
}
|
if desc.Name == field {
|
||||||
|
return i
|
||||||
if strings.EqualFold(descName, field) {
|
}
|
||||||
return i
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue