Skip to content

Commit

Permalink
fix nullable dictionary
Browse files Browse the repository at this point in the history
  • Loading branch information
gernest committed Feb 22, 2024
1 parent e756c77 commit 69f6b63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/closter/events/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func New(mem memory.Allocator) *Builder {
number: f.Number(),
arrow: arrow.Field{
Name: string(f.Name()),
Nullable: f.HasOptionalKeyword(),
Nullable: f.HasOptionalKeyword() || f.Kind() == protoreflect.StringKind,
Type: kinds[f.Kind()],
},
})
Expand Down

0 comments on commit 69f6b63

Please sign in to comment.