Skip to content

Commit bae3371

Browse files
fix: Nulls in string columns become empty
1 parent 6043581 commit bae3371

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pkg/plugin/datasource.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,8 @@ func dataFrameFromGrid(grid haystack.Grid) (*data.Frame, error) {
332332
case haystack.Marker:
333333
value := "✓"
334334
values = append(values, &value)
335+
case haystack.Null:
336+
values = append(values, nil)
335337
default:
336338
value := val.ToZinc()
337339
values = append(values, &value)

0 commit comments

Comments
 (0)