in rows.go 'fieldPosByName' use boolean to replace '_' and only execution replacements when there are no db tags present

pull/2085/head
nolandseigler 2024-07-11 23:28:21 -04:00
parent 7a35585143
commit 7fceb64dee
No known key found for this signature in database
GPG Key ID: E40C7025309EA201
2 changed files with 12 additions and 7 deletions

13
rows.go
View File

@ -797,7 +797,7 @@ func computeNamedStructFields(
if !dbTagPresent {
colName = sf.Name
}
fpos := fieldPosByName(fldDescs, colName)
fpos := fieldPosByName(fldDescs, colName, !dbTagPresent)
if fpos == -1 {
if missingField == "" {
missingField = colName
@ -816,13 +816,18 @@ func computeNamedStructFields(
const structTagKey = "db"
func fieldPosByName(fldDescs []pgconn.FieldDescription, field string) (i int) {
func fieldPosByName(fldDescs []pgconn.FieldDescription, field string, replace bool) (i int) {
i = -1
if replace {
field = strings.ReplaceAll(field, "_", "")
}
for i, desc := range fldDescs {
// Snake case support.
field = strings.ReplaceAll(field, "_", "")
descName := strings.ReplaceAll(desc.Name, "_", "")
descName := desc.Name
if replace {
descName = strings.ReplaceAll(desc.Name, "_", "")
}
if strings.EqualFold(descName, field) {
return i

View File

@ -693,7 +693,7 @@ func TestRowToStructByNameDbTags(t *testing.T) {
// check missing fields in a returned row
rows, _ = conn.Query(ctx, `select 'Smith' as last_name, n as age from generate_series(0, 9) n`)
_, err = pgx.CollectRows(rows, pgx.RowToStructByName[person])
assert.ErrorContains(t, err, "cannot find field First in returned row")
assert.ErrorContains(t, err, "cannot find field first_name in returned row")
// check missing field in a destination struct
rows, _ = conn.Query(ctx, `select 'John' as first_name, 'Smith' as last_name, n as age, 'd5e49d3f' as account_id, '5e49d321' as account__id, null as ignore from generate_series(0, 9) n`)