-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert update Apache Arrow to
v16
(#228)
Reverts #216 Unfortunately, updating Apache Arrow turned out to be a breaking change which created issues to some library users. We made a decision to revert this upgrade
- Loading branch information
1 parent
9f63de7
commit 869c98e
Showing
10 changed files
with
104 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,57 @@ | ||
module github.com/databricks/databricks-sql-go | ||
|
||
go 1.21 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/apache/arrow/go/v16 v16.0.0 | ||
github.com/apache/thrift v0.19.0 | ||
github.com/apache/arrow/go/v12 v12.0.1 | ||
github.com/apache/thrift v0.17.0 | ||
github.com/coreos/go-oidc/v3 v3.5.0 | ||
github.com/hashicorp/go-retryablehttp v0.7.1 | ||
github.com/joho/godotenv v1.4.0 | ||
github.com/mattn/go-isatty v0.0.19 | ||
github.com/pierrec/lz4/v4 v4.1.21 | ||
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/rs/zerolog v1.28.0 | ||
github.com/stretchr/testify v1.9.0 | ||
github.com/pierrec/lz4/v4 v4.1.15 | ||
github.com/stretchr/testify v1.8.1 | ||
golang.org/x/oauth2 v0.7.0 | ||
gotest.tools/gotestsum v1.8.2 | ||
) | ||
|
||
require ( | ||
github.com/andybalholm/brotli v1.0.4 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dnephin/pflag v1.0.7 // indirect | ||
github.com/fatih/color v1.15.0 // indirect | ||
github.com/fatih/color v1.13.0 // indirect | ||
github.com/fsnotify/fsnotify v1.5.4 // indirect | ||
github.com/go-jose/go-jose/v3 v3.0.0 // indirect | ||
github.com/goccy/go-json v0.10.2 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/flatbuffers v24.3.25+incompatible // indirect | ||
github.com/goccy/go-json v0.9.11 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/google/flatbuffers v2.0.8+incompatible // indirect | ||
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.1 // indirect | ||
github.com/klauspost/compress v1.17.7 // indirect | ||
github.com/klauspost/cpuid/v2 v2.2.7 // indirect | ||
github.com/kr/pretty v0.3.0 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // 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/kr/text v0.2.0 // indirect | ||
github.com/mattn/go-colorable v0.1.12 // indirect | ||
github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8 // indirect | ||
github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/zeebo/xxh3 v1.0.2 // indirect | ||
golang.org/x/crypto v0.21.0 // indirect | ||
golang.org/x/exp v0.0.0-20240222234643-814bf88cf225 // indirect | ||
golang.org/x/mod v0.16.0 // indirect | ||
golang.org/x/net v0.22.0 // indirect | ||
golang.org/x/sync v0.6.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
golang.org/x/term v0.18.0 // indirect | ||
golang.org/x/tools v0.19.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect | ||
golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f // indirect | ||
golang.org/x/mod v0.8.0 // indirect | ||
golang.org/x/net v0.9.0 // indirect | ||
golang.org/x/sync v0.1.0 // indirect | ||
golang.org/x/term v0.7.0 // indirect | ||
golang.org/x/tools v0.6.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.33.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) | ||
|
||
require ( | ||
github.com/hashicorp/go-retryablehttp v0.7.1 | ||
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/rs/zerolog v1.28.0 | ||
golang.org/x/sys v0.7.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters