diff --git a/pkg/athena/datasource.go b/pkg/athena/datasource.go index 9618cf5e..9eb3586e 100644 --- a/pkg/athena/datasource.go +++ b/pkg/athena/datasource.go @@ -5,7 +5,6 @@ import ( "database/sql" "encoding/json" "fmt" - "time" "github.com/grafana/athena-datasource/pkg/athena/api" "github.com/grafana/athena-datasource/pkg/athena/driver" @@ -26,7 +25,6 @@ type athenaQueryArgs struct { Region, Catalog, Database string ResultReuseEnabled bool ResultReuseMaxAgeInMinutes int64 - Updated *time.Time } type awsDSClient interface { diff --git a/pkg/athena/models/settings.go b/pkg/athena/models/settings.go index 10120562..360a1b88 100644 --- a/pkg/athena/models/settings.go +++ b/pkg/athena/models/settings.go @@ -17,7 +17,6 @@ const ( Catalog = "catalog" ResultReuseEnabled = "resultReuseEnabled" ResultReuseMaxAgeInMinutes = "resultReuseMaxAgeInMinutes" - Updated = "updated" ) type AthenaDataSourceSettings struct {