Skip to content

Commit

Permalink
Fix dynamic builder bug for float values
Browse files Browse the repository at this point in the history
Closes #5475
  • Loading branch information
mattnibs committed Nov 23, 2024
1 parent cbb40f5 commit e737ee0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vector/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func NewBuilder(typ super.Type) Builder {
case super.IsSigned(id):
b = &intBuilder{typ: typ}
case super.IsFloat(id):
b = &intBuilder{typ: typ}
b = &floatBuilder{typ: typ}
}
} else {
switch id {
Expand Down

0 comments on commit e737ee0

Please sign in to comment.