Skip to content

Commit ebfbf05

Browse files
committed
check for the "null" string
1 parent 37655fe commit ebfbf05

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)