--- a/job.go
+++ b/job.go
@@ -15,7 +15,6 @@ import (
 	"github.com/jmoiron/sqlx"
 	_ "github.com/lib/pq" // register the PostgreSQL driver
 	"github.com/prometheus/client_golang/prometheus"
-	_ "github.com/segmentio/go-athena" // register the AWS Athena driver
 )
 
 var (
@@ -134,6 +133,7 @@ func (j *Job) Run() {
 				database: strings.TrimPrefix(u.Path, "/"),
 				user:     user,
 			}
+			/*
 			if newConn.driver == "athena" {
 				// call go-athena's Open() to ensure conn.db is set,
 				// otherwise API calls will complain about an empty database field:
@@ -144,6 +144,7 @@ func (j *Job) Run() {
 					continue
 				}
 			}
+			*/
 			j.conns = append(j.conns, newConn)
 		}
 	}
