-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: add support for getting result from S3 if there is more than 1 …
…page (1000 rows)
- Loading branch information
jan.kaifer
committed
Oct 15, 2024
1 parent
be26bb1
commit f7772c2
Showing
5 changed files
with
210 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,76 @@ | ||
module github.com/uber/athenadriver | ||
|
||
go 1.13 | ||
go 1.21 | ||
|
||
toolchain go1.23.0 | ||
|
||
require ( | ||
github.com/DATA-DOG/go-sqlmock v1.4.1 | ||
github.com/aws/aws-sdk-go v1.51.3 | ||
github.com/cactus/go-statsd-client/statsd v0.0.0-20200423205355-cb0885a1018c | ||
github.com/jedib0t/go-pretty/v6 v6.2.7 | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/stretchr/testify v1.7.0 | ||
github.com/uber-go/tally v3.3.17+incompatible | ||
github.com/xwb1989/sqlparser v0.0.0-20180606152119-120387863bf2 | ||
go.uber.org/config v1.4.0 | ||
go.uber.org/fx v1.12.0 | ||
go.uber.org/zap v1.15.0 | ||
) | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 // indirect | ||
github.com/aws/aws-sdk-go-v2 v1.32.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.6 // indirect | ||
github.com/aws/aws-sdk-go-v2/config v1.27.43 // indirect | ||
github.com/aws/aws-sdk-go-v2/credentials v1.17.41 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.17 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.21 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.21 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.21 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.4.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/s3 v1.65.3 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.24.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.32.2 // indirect | ||
github.com/aws/smithy-go v1.22.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/google/renameio v0.1.0 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/jmespath/go-jmespath/internal/testify v1.5.1 // indirect | ||
github.com/kisielk/gotool v1.0.0 // indirect | ||
github.com/kr/pretty v0.1.0 // indirect | ||
github.com/kr/pty v1.1.1 // indirect | ||
github.com/kr/text v0.1.0 // indirect | ||
github.com/mattn/go-runewidth v0.0.13 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pkg/profile v1.6.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rivo/uniseg v0.2.0 // indirect | ||
github.com/rogpeppe/go-internal v1.3.0 // indirect | ||
github.com/stretchr/objx v0.1.0 // indirect | ||
github.com/yuin/goldmark v1.4.13 // indirect | ||
go.uber.org/atomic v1.6.0 // indirect | ||
go.uber.org/dig v1.9.0 // indirect | ||
go.uber.org/goleak v0.10.0 // indirect | ||
go.uber.org/multierr v1.5.0 // indirect | ||
go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee // indirect | ||
golang.org/x/crypto v0.14.0 // indirect | ||
golang.org/x/lint v0.0.0-20190930215403-16217165b5de // indirect | ||
golang.org/x/mod v0.8.0 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/sync v0.1.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/term v0.13.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
golang.org/x/tools v0.6.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7 // indirect | ||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect | ||
gopkg.in/errgo.v2 v2.1.0 // indirect | ||
gopkg.in/yaml.v2 v2.2.8 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect | ||
honnef.co/go/tools v0.0.1-2019.2.3 // 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