Skip to content

Commit

Permalink
upgraded to Arrow 10
Browse files Browse the repository at this point in the history
  • Loading branch information
Rickard Lundin committed Dec 11, 2022
1 parent 3906589 commit 1874b90
Show file tree
Hide file tree
Showing 7 changed files with 78 additions and 61 deletions.
4 changes: 2 additions & 2 deletions api/call.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ SOFTWARE.
package api

import (
"github.com/apache/arrow/go/v9/arrow"
"github.com/apache/arrow/go/v9/arrow/memory"
"github.com/apache/arrow/go/v10/arrow"
"github.com/apache/arrow/go/v10/arrow/memory"
)

type Bridge interface {
Expand Down
56 changes: 28 additions & 28 deletions ffi/rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions ffi/rust/call.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ package rust

import (
"fmt"
"github.com/apache/arrow/go/v9/arrow"
"github.com/apache/arrow/go/v9/arrow/cdata"
"github.com/apache/arrow/go/v10/arrow"
"github.com/apache/arrow/go/v10/arrow/cdata"
"github.com/ignalina/alloy/api"
"time"
"unsafe"
Expand Down
Binary file modified ffi/rust/librust_impl.a
Binary file not shown.
27 changes: 15 additions & 12 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,26 @@ module github.com/ignalina/alloy

go 1.19

require github.com/apache/arrow/go/v9 v9.0.0
require (
github.com/apache/arrow/go/v10 v10.0.1
github.com/apache/arrow/go/v9 v9.0.0
)

require (
github.com/andybalholm/brotli v1.0.4 // indirect
github.com/apache/thrift v0.15.0 // indirect
github.com/goccy/go-json v0.9.6 // indirect
github.com/apache/thrift v0.16.0 // indirect
github.com/goccy/go-json v0.9.11 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/flatbuffers v2.0.5+incompatible // indirect
github.com/klauspost/asmfmt v1.3.1 // indirect
github.com/klauspost/compress v1.14.2 // indirect
github.com/google/flatbuffers v2.0.8+incompatible // indirect
github.com/klauspost/asmfmt v1.3.2 // indirect
github.com/klauspost/compress v1.15.9 // indirect
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8 // indirect
github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3 // indirect
github.com/pierrec/lz4/v4 v4.1.12 // indirect
github.com/zeebo/xxh3 v1.0.1 // indirect
golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect
golang.org/x/tools v0.1.10 // indirect
golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f // indirect
github.com/pierrec/lz4/v4 v4.1.15 // indirect
github.com/zeebo/xxh3 v1.0.2 // indirect
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
golang.org/x/sys v0.0.0-20220829200755-d48e67d00261 // indirect
golang.org/x/tools v0.1.12 // indirect
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
)
Loading

0 comments on commit 1874b90

Please sign in to comment.