Skip to content

Commit

Permalink
use arrow 15
Browse files Browse the repository at this point in the history
  • Loading branch information
scottlepp committed Feb 22, 2024
1 parent d2ca0e6 commit dab77eb
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 1,026 deletions.
2 changes: 1 addition & 1 deletion duck/data/arrow.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"fmt"

"github.com/apache/arrow/go/v16/arrow"
"github.com/apache/arrow/go/v15/arrow"
"github.com/grafana/grafana-plugin-sdk-go/data"
)

Expand Down
8 changes: 4 additions & 4 deletions duck/data/parquet.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ import (
"sync"

"github.com/apache/arrow/go/arrow/memory"
"github.com/apache/arrow/go/v16/arrow"
"github.com/apache/arrow/go/v16/arrow/array"
"github.com/apache/arrow/go/v16/parquet"
"github.com/apache/arrow/go/v16/parquet/pqarrow"
"github.com/apache/arrow/go/v15/arrow"
"github.com/apache/arrow/go/v15/arrow/array"
"github.com/apache/arrow/go/v15/parquet"
"github.com/apache/arrow/go/v15/parquet/pqarrow"
"github.com/grafana/grafana-plugin-sdk-go/data"
)

Expand Down
8 changes: 2 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ module github.com/scottlepp/go-duck

go 1.21.5

require github.com/xitongsys/parquet-go-source v0.0.0-20240122235623-d6294584ab18

require (
github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c // indirect
github.com/andybalholm/brotli v1.0.5 // indirect
Expand All @@ -24,7 +22,6 @@ require (
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/olekukonko/tablewriter v0.0.5 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/zeebo/xxh3 v1.0.2 // indirect
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
Expand All @@ -37,19 +34,18 @@ require (
google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97 // indirect
google.golang.org/grpc v1.60.1 // indirect
google.golang.org/protobuf v1.32.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

require (
github.com/apache/arrow/go/arrow v0.0.0-20200730104253-651201b0f516 // indirect
github.com/apache/arrow/go/arrow v0.0.0-20200730104253-651201b0f516
github.com/apache/arrow/go/v16 v16.0.0-20240221194630-e198f309c577
github.com/apache/thrift v0.17.0 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/grafana/grafana-plugin-sdk-go v0.212.0
github.com/klauspost/compress v1.16.7 // indirect
github.com/pierrec/lz4/v4 v4.1.18 // indirect
github.com/stretchr/testify v1.8.4
github.com/xitongsys/parquet-go v1.6.2 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
gotest.tools v2.2.0+incompatible
)
Loading

0 comments on commit dab77eb

Please sign in to comment.