Skip to content

Commit 1f3c062

Browse files
committed
fixed IsNil
1 parent 12ec4ce commit 1f3c062

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ func EscapeInLocation(val interface{}, loc *time.Location) string {
7676
return nullStr
7777
}
7878

79-
if refValue.IsNil() {
79+
if refValue.Kind() == reflect.Ptr && refValue.IsNil() {
8080
return nullStr
8181
}
8282

0 commit comments

Comments
 (0)