Skip to content

Commit

Permalink
schema upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
araddon committed Oct 29, 2017
1 parent 0377a1f commit 8ad1e02
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion backends/mongo/mgo_source.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
)

var (
// implement interfaces
// Ensure we implement source interface
_ schema.Source = (*Source)(nil)
)

Expand Down
1 change: 1 addition & 0 deletions backends/mongo/mgo_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import (

"github.com/araddon/qlbridge/datasource"
"github.com/araddon/qlbridge/plan"

"github.com/dataux/dataux/frontends/mysqlfe/testmysql"
"github.com/dataux/dataux/planner"
tu "github.com/dataux/dataux/testutil"
Expand Down
19 changes: 17 additions & 2 deletions frontends/mysqlfe/testmysql/runtestserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,29 @@ import (
"time"

u "github.com/araddon/gou"
"github.com/araddon/qlbridge/schema"
"github.com/coreos/etcd/embed"
"github.com/coreos/pkg/capnslog"

// Frontend's side-effect imports
_ "github.com/dataux/dataux/frontends/mysqlfe"

"github.com/araddon/qlbridge/schema"
// Backend Side-Effect imports, ie load the providers into registry but
// config will determine if they get used.
// if you are building custom daemon, you can cherry pick sources you care about
_ "github.com/araddon/qlbridge/datasource/files"
_ "github.com/dataux/dataux/backends/bigquery"
_ "github.com/dataux/dataux/backends/bigtable"
_ "github.com/dataux/dataux/backends/cassandra"
_ "github.com/dataux/dataux/backends/datastore"
_ "github.com/dataux/dataux/backends/elasticsearch"
_ "github.com/dataux/dataux/backends/lytics"
_ "github.com/dataux/dataux/backends/mongo"

// I cannot get this working right now, currently
// a conflict between etcd &kube dependencies that seems un-resolveable
//_ "github.com/dataux/dataux/backends/kubernetes"

"github.com/dataux/dataux/models"
"github.com/dataux/dataux/planner"
"github.com/dataux/dataux/proxy"
Expand Down Expand Up @@ -71,7 +87,6 @@ schemas : [
"cass",
"bt",
"bigquery",
"kube",
"lytics"
]
}
Expand Down

0 comments on commit 8ad1e02

Please sign in to comment.