Skip to content

Commit eaf18fa

Browse files
authored
Merge pull request #38 from ConductorOne/bt/check_null
[BB-195] check for the "null" string
2 parents 37655fe + ebfbf05 commit eaf18fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/snowflake/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ func (m *ResultSetMetadata) GetBoolValueFromRow(row []string, key string) (bool,
114114
}
115115

116116
// "NULL"-ish case
117-
if row[i] == "" {
117+
if row[i] == "" || row[i] == "null" {
118118
return false, nil
119119
}
120120

0 commit comments

Comments
 (0)