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

22
rows.go
View File

@ -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