diff --git a/vector/builder.go b/vector/builder.go index 562cabf485..439e934a2b 100644 --- a/vector/builder.go +++ b/vector/builder.go @@ -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 {