From 71a8e53574e1e60f7f75d6873d1f98d0ccea31bf Mon Sep 17 00:00:00 2001 From: nolandseigler <57370691+nolandseigler@users.noreply.github.com> Date: Fri, 12 Jul 2024 08:50:54 -0400 Subject: [PATCH] use normalized equality or strict equality check in rows.go fieldPosByName --- rows.go | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/rows.go b/rows.go index 459e2096..f23625d4 100644 --- a/rows.go +++ b/rows.go @@ -816,21 +816,21 @@ 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) { - return i + if normalize { + if strings.EqualFold(strings.ReplaceAll(desc.Name, "_", ""), field) { + return i + } + } else { + if desc.Name == field { + return i + } } } return