Add snake_case support to RowToStructByName

pull/1856/head
Tikhon Fedulov 2023-12-22 23:04:44 +03:00 committed by Jack Christensen
parent cbc5a7055f
commit 0c7acf9481
1 changed files with 5 additions and 0 deletions

View File

@ -667,6 +667,11 @@ const structTagKey = "db"
func fieldPosByName(fldDescs []pgconn.FieldDescription, field string) (i int) { func fieldPosByName(fldDescs []pgconn.FieldDescription, field string) (i int) {
i = -1 i = -1
for i, desc := range fldDescs { for i, desc := range fldDescs {
// Support snake and spinal case.
desc.Name = strings.ReplaceAll(desc.Name, "_", "")
desc.Name = strings.ReplaceAll(desc.Name, "-", "")
if strings.EqualFold(desc.Name, field) { if strings.EqualFold(desc.Name, field) {
return i return i
} }