Skip to content
This repository was archived by the owner on Feb 17, 2026. It is now read-only.

Commit fe293f9

Browse files
authored
Merge pull request #29 from speee/revert-28-init
Revert "Rename module from speee/go-athena to beckoncat/go-athena"
2 parents fe63b78 + 636a3e6 commit fe293f9

6 files changed

Lines changed: 15 additions & 15 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM golang:1.23
22

3-
WORKDIR /go/src/github.com/beckoncat/go-athena
3+
WORKDIR /go/src/github.com/speee/go-athena
44

55
ENV GO111MODULE=on
66

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![](https://godoc.org/github.com/speee/go-athena?status.svg)](https://godoc.org/github.com/speee/go-athena)
22

3-
**This repository is a fork of [speee/go-athena](https://github.com/speee/go-athena) (itself a fork of [segmentio/go-athena](https://github.com/segmentio/go-athena)). Since speee/go-athena is no longer being maintained, this repository will serve as an independently maintained continuation of the project.**
3+
**This is forked from [segmentio/go-athena](https://github.com/segmentio/go-athena) and we described what changes we added [here](./doc/introduction.md).**
44

55
# go-athena
66

@@ -9,7 +9,7 @@ go-athena is a simple Golang [database/sql] driver for [Amazon Athena](https://a
99
```go
1010
import (
1111
"database/sql"
12-
_ "github.com/beckoncat/go-athena"
12+
_ "github.com/speee/go-athena"
1313
)
1414

1515
func main() {
@@ -67,9 +67,9 @@ Response time for fetching 1,000,000 records
6767
|package|response time|
6868
|--|--|
6969
|segmentio/go-athena|2m 33.4132205s|
70-
|beckoncat/go-athena API mode|2m 26.475804292s|
71-
|beckoncat/go-athena DL mode|20.719727417s|
72-
|beckoncat/go-athena GZIP mode|17.661648209s|
70+
|speee/go-athena API mode|2m 26.475804292s|
71+
|speee/go-athena DL mode|20.719727417s|
72+
|speee/go-athena GZIP mode|17.661648209s|
7373

7474
Detailed explanation is described [here](doc/result_mode.md#response-time-for-each-mode).
7575

doc/introduction.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Introduction of beckoncat/go-athena
1+
# Introduction of speee/go-athena
22

3-
Recently, we released [beckoncat/go-athena](https://github.com/beckoncat/go-athena), and we would like to introduce it here.
3+
Recently, we released [speee/go-athena](https://github.com/speee/go-athena), and we would like to introduce it here.
44

55
## What is go-athena
66
`go-athena` is a Golang [database/sql](https://golang.org/pkg/database/sql/) package driver for AWS Athena.
@@ -10,7 +10,7 @@ You can use it as follows:
1010
```go
1111
import (
1212
"database/sql"
13-
_ "github.com/beckoncat/go-athena"
13+
_ "github.com/speee/go-athena"
1414
)
1515

1616
func main() {
@@ -46,4 +46,4 @@ We can keep maintaining this library and review / merge your PRs :)
4646
And if the original creator would hope so, we would also be happy to merge our changes into the original repository.
4747

4848
`go-athena` is an awesome package for Golang developers because it's very easy to use Athena via `database/sql` interface.
49-
`beckoncat/go-athena` has new features as well as solving the previous issues, so we hope that the original creator will also like it.
49+
`speee/go-athena` has new features as well as solving the previous issues, so we hope that the original creator will also like it.

doc/result_mode.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ I think the following trends can be said.
7070
|package|response time (500000 rows)|response time (1000000 rows)|response time (5000000 rows)|
7171
|--|--|--|--|
7272
|segmentio/go-athena|1m 19.8935445s|2m 33.4132205s|12m 36.8392345s|
73-
|beckoncat/go-athena API mode|1m 18.9925315s|2m 26.475804292s|12m 25.008203542s|
74-
|beckoncat/go-athena DL mode|12.721702583s|20.719727417s|1m 23.689167708s|
75-
|beckoncat/go-athena GZIP mode|15.8399715s|17.661648209s|43.873663666s|
73+
|speee/go-athena API mode|1m 18.9925315s|2m 26.475804292s|12m 25.008203542s|
74+
|speee/go-athena DL mode|12.721702583s|20.719727417s|1m 23.689167708s|
75+
|speee/go-athena GZIP mode|15.8399715s|17.661648209s|43.873663666s|
7676

7777
## Usages
7878

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ services:
33
app:
44
build: .
55
volumes:
6-
- .:/go/src/github.com/beckoncat/go-athena
6+
- .:/go/src/github.com/speee/go-athena
77
- go-pkg-mod:/go/pkg/mod
88
- root-cache:/root/.cache
99
volumes:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/beckoncat/go-athena
1+
module github.com/speee/go-athena
22

33
go 1.18
44

0 commit comments

Comments
 (0)