mirror of https://github.com/jackc/pgx.git
in rows.go 'fieldPosByName' use boolean to replace '_' and only execution replacements when there are no db tags present
parent
7a35585143
commit
7fceb64dee
13
rows.go
13
rows.go
|
@ -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
|
||||
|
|
|
@ -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`)
|
||||
|
|
Loading…
Reference in New Issue