blob: e642d037492b71f713dfd250308bc856c955e20a [file]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package array_test
import (
"fmt"
"testing"
"github.com/apache/arrow-go/v18/arrow"
"github.com/apache/arrow-go/v18/arrow/array"
"github.com/apache/arrow-go/v18/arrow/decimal128"
"github.com/apache/arrow-go/v18/arrow/memory"
"github.com/stretchr/testify/assert"
)
func TestNewDecimal128Builder(t *testing.T) {
mem := memory.NewCheckedAllocator(memory.NewGoAllocator())
defer mem.AssertSize(t, 0)
ab := array.NewDecimal128Builder(mem, &arrow.Decimal128Type{Precision: 10, Scale: 1})
defer ab.Release()
ab.Retain()
ab.Release()
want := []decimal128.Num{
decimal128.New(1, 1),
decimal128.New(2, 2),
decimal128.New(3, 3),
{},
decimal128.FromI64(-5),
decimal128.FromI64(-6),
{},
decimal128.FromI64(8),
decimal128.FromI64(9),
decimal128.FromI64(10),
}
valids := []bool{true, true, true, false, true, true, false, true, true, true}
for i, valid := range valids {
switch {
case valid:
ab.Append(want[i])
default:
ab.AppendNull()
}
}
// check state of builder before NewDecimal128Array
assert.Equal(t, 10, ab.Len(), "unexpected Len()")
assert.Equal(t, 2, ab.NullN(), "unexpected NullN()")
a := ab.NewArray().(*array.Decimal128)
a.Retain()
a.Release()
// check state of builder after NewDecimal128Array
assert.Zero(t, ab.Len(), "unexpected ArrayBuilder.Len(), NewDecimal128Array did not reset state")
assert.Zero(t, ab.Cap(), "unexpected ArrayBuilder.Cap(), NewDecimal128Array did not reset state")
assert.Zero(t, ab.NullN(), "unexpected ArrayBuilder.NullN(), NewDecimal128Array did not reset state")
// check state of array
assert.Equal(t, 2, a.NullN(), "unexpected null count")
assert.Equal(t, want, a.Values(), "unexpected Decimal128Values")
assert.Equal(t, []byte{0xb7}, a.NullBitmapBytes()[:1]) // 4 bytes due to minBuilderCapacity
assert.Equal(t, 4, a.Data().Buffers()[0].Len(), "should be 4 bytes due to minBuilderCapacity")
assert.Len(t, a.Values(), 10, "unexpected length of Decimal128Values")
assert.Equal(t, 10*arrow.Decimal128SizeBytes, a.Data().Buffers()[1].Len())
a.Release()
ab.Append(decimal128.FromI64(7))
ab.Append(decimal128.FromI64(8))
a = ab.NewDecimal128Array()
assert.Equal(t, 0, a.NullN())
assert.Equal(t, []decimal128.Num{decimal128.FromI64(7), decimal128.FromI64(8)}, a.Values())
assert.Len(t, a.Values(), 2)
assert.Equal(t, 2*arrow.Decimal128SizeBytes, a.Data().Buffers()[1].Len())
a.Release()
}
func TestDecimal128Builder_Empty(t *testing.T) {
mem := memory.NewCheckedAllocator(memory.NewGoAllocator())
defer mem.AssertSize(t, 0)
ab := array.NewDecimal128Builder(mem, &arrow.Decimal128Type{Precision: 10, Scale: 1})
defer ab.Release()
want := []decimal128.Num{decimal128.FromI64(3), decimal128.FromI64(4)}
ab.AppendValues([]decimal128.Num{}, nil)
a := ab.NewDecimal128Array()
assert.Zero(t, a.Len())
a.Release()
ab.AppendValues(nil, nil)
a = ab.NewDecimal128Array()
assert.Zero(t, a.Len())
a.Release()
ab.AppendValues(want, nil)
a = ab.NewDecimal128Array()
assert.Equal(t, want, a.Values())
a.Release()
ab.AppendValues([]decimal128.Num{}, nil)
ab.AppendValues(want, nil)
a = ab.NewDecimal128Array()
assert.Equal(t, want, a.Values())
a.Release()
ab.AppendValues(want, nil)
ab.AppendValues([]decimal128.Num{}, nil)
a = ab.NewDecimal128Array()
assert.Equal(t, want, a.Values())
a.Release()
}
func TestDecimal128Slice(t *testing.T) {
mem := memory.NewCheckedAllocator(memory.NewGoAllocator())
defer mem.AssertSize(t, 0)
dtype := &arrow.Decimal128Type{Precision: 10, Scale: 1}
b := array.NewDecimal128Builder(mem, dtype)
defer b.Release()
var data = []decimal128.Num{
decimal128.FromI64(-1),
decimal128.FromI64(+0),
decimal128.FromI64(+1),
decimal128.New(-4, 4),
}
b.AppendValues(data[:2], nil)
b.AppendNull()
b.Append(data[3])
arr := b.NewDecimal128Array()
defer arr.Release()
if got, want := arr.Len(), len(data); got != want {
t.Fatalf("invalid array length: got=%d, want=%d", got, want)
}
slice := array.NewSliceData(arr.Data(), 2, 4)
defer slice.Release()
sub1 := array.MakeFromData(slice)
defer sub1.Release()
v, ok := sub1.(*array.Decimal128)
if !ok {
t.Fatalf("could not type-assert to array.String")
}
if got, want := v.String(), `[(null) -7.378697629e+18]`; got != want {
t.Fatalf("got=%q, want=%q", got, want)
}
assert.Equal(t, array.NullValueStr, v.ValueStr(0))
assert.Equal(t, "-7.378697629e+18", v.ValueStr(1))
if got, want := v.NullN(), 1; got != want {
t.Fatalf("got=%q, want=%q", got, want)
}
if got, want := v.Data().Offset(), 2; got != want {
t.Fatalf("invalid offset: got=%d, want=%d", got, want)
}
}
func TestDecimal128StringRoundTrip(t *testing.T) {
dt := &arrow.Decimal128Type{Precision: 20, Scale: 5}
// 1. create array
mem := memory.NewCheckedAllocator(memory.NewGoAllocator())
defer mem.AssertSize(t, 0)
b := array.NewDecimal128Builder(mem, dt)
defer b.Release()
values := []decimal128.Num{
decimal128.New(1, 1),
decimal128.New(1, 2),
decimal128.New(1, 3),
{},
decimal128.FromI64(-5),
decimal128.FromI64(-6),
{},
decimal128.FromI64(8),
decimal128.FromI64(9),
decimal128.FromI64(10),
}
val1, err := decimal128.FromString("0.99", dt.Precision, dt.Scale)
if err != nil {
t.Fatal(err)
}
val2, err := decimal128.FromString("1234567890.12345", dt.Precision, dt.Scale)
if err != nil {
t.Fatal(err)
}
values = append(values, val1, val2)
valid := []bool{true, true, true, false, true, true, false, true, true, true, true, true}
b.AppendValues(values, valid)
arr := b.NewArray().(*array.Decimal128)
defer arr.Release()
// 2. create array via AppendValueFromString
b1 := array.NewDecimal128Builder(mem, dt)
defer b1.Release()
for i := 0; i < arr.Len(); i++ {
assert.NoError(t, b1.AppendValueFromString(arr.ValueStr(i)))
}
arr1 := b1.NewArray().(*array.Decimal128)
defer arr1.Release()
assert.True(t, array.Equal(arr, arr1))
}
func TestDecimal128GetOneForMarshal(t *testing.T) {
mem := memory.NewCheckedAllocator(memory.NewGoAllocator())
defer mem.AssertSize(t, 0)
dtype := &arrow.Decimal128Type{Precision: 38, Scale: 20}
b := array.NewDecimal128Builder(mem, dtype)
defer b.Release()
cases := []struct {
give any
want any
}{
{"1", "1"},
{"1.25", "1.25"},
{"0.99", "0.99"},
{"1234567890.123456789", "1234567890.123456789"},
{nil, nil},
{"-0.99", "-0.99"},
{"-1234567890.123456789", "-1234567890.123456789"},
{"0.0000000000000000001", "1e-19"},
}
for _, v := range cases {
if v.give == nil {
b.AppendNull()
continue
}
dt, err := decimal128.FromString(v.give.(string), dtype.Precision, dtype.Scale)
if err != nil {
t.Fatal(err)
}
b.Append(dt)
}
arr := b.NewDecimal128Array()
defer arr.Release()
if got, want := arr.Len(), len(cases); got != want {
t.Fatalf("invalid array length: got=%d, want=%d", got, want)
}
for i := range cases {
assert.Equalf(t, cases[i].want, arr.GetOneForMarshal(i), "unexpected value at index %d", i)
}
}
// TestDecimal128StringScaled is a regression test for apache/arrow-go#848:
// Array.String() (and RecordBatch printing) must use the type's scale like
// ValueStr, not the raw unscaled decimal128.Num struct.
func TestDecimal128StringScaled(t *testing.T) {
mem := memory.NewCheckedAllocator(memory.NewGoAllocator())
defer mem.AssertSize(t, 0)
typ := &arrow.Decimal128Type{Precision: 5, Scale: 2}
b := array.NewDecimal128Builder(mem, typ)
defer b.Release()
value, err := decimal128.FromString("19.99", typ.Precision, typ.Scale)
if err != nil {
t.Fatal(err)
}
b.Append(value)
b.AppendNull()
arr := b.NewDecimal128Array()
defer arr.Release()
assert.Equal(t, "19.99", arr.ValueStr(0))
assert.Equal(t, "[19.99 (null)]", arr.String())
schema := arrow.NewSchema([]arrow.Field{{Name: "price", Type: typ}}, nil)
rec := array.NewRecordBatch(schema, []arrow.Array{arr}, int64(arr.Len()))
defer rec.Release()
out := fmt.Sprintf("%v", rec)
assert.Contains(t, out, "[19.99 (null)]")
// 1999 is the raw unscaled value that must never leak into output.
assert.NotContains(t, out, "1999")
}