This is an automated email from the ASF dual-hosted git repository.
zeroshade pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git
from 5f6670895f ARROW-17482: [Go] Remove ValueDescr types (#13930)
add 5f84335fbb ARROW-17475: [Go] Function interface and Registry impl
(#13924)
No new revisions were added by this update.
Summary of changes:
dev/release/rat_exclude_files.txt | 1 +
go/arrow/compute/{hash_util.go => doc.go} | 17 +-
go/arrow/compute/expression.go | 4 +
go/arrow/compute/funckind_string.go | 27 +++
go/arrow/compute/functions.go | 63 +++++++
.../bits_test.go => compute/functions_test.go} | 40 ++--
go/arrow/compute/registry.go | 201 +++++++++++++++++++++
go/arrow/compute/registry_test.go | 176 ++++++++++++++++++
8 files changed, 505 insertions(+), 24 deletions(-)
copy go/arrow/compute/{hash_util.go => doc.go} (60%)
create mode 100644 go/arrow/compute/funckind_string.go
create mode 100644 go/arrow/compute/functions.go
copy go/arrow/{internal/testing/tools/bits_test.go =>
compute/functions_test.go} (58%)
create mode 100644 go/arrow/compute/registry.go
create mode 100644 go/arrow/compute/registry_test.go