use normalized equality or strict equality check in rows.go fieldPosByName

pull/2085/head
nolandseigler 2024-07-12 08:50:54 -04:00
parent b25d092d20
commit 71a8e53574
No known key found for this signature in database
GPG Key ID: E40C7025309EA201
1 changed files with 11 additions and 11 deletions

20
rows.go
View File

@ -816,22 +816,22 @@ func computeNamedStructFields(
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
if replace {
if normalize {
field = strings.ReplaceAll(field, "_", "")
}
for i, desc := range fldDescs {
// Snake case support.
descName := desc.Name
if replace {
descName = strings.ReplaceAll(desc.Name, "_", "")
}
if strings.EqualFold(descName, field) {
if normalize {
if strings.EqualFold(strings.ReplaceAll(desc.Name, "_", ""), field) {
return i
}
} else {
if desc.Name == field {
return i
}
}
}
return
}