volatiletech / sqlboiler

Generate a Go ORM tailored to your database schema.
BSD 3-Clause "New" or "Revised" License
6.73k stars 544 forks source link

Support for CockroachDB? #187

Closed dtrinh100 closed 7 years ago

dtrinh100 commented 7 years ago

Is it possible to use CockroachDB with sqlboiler? CockroachDB uses the postgres driver, but I am not sure if that means I can use it with everything that supports Postgres. If not, are there any plans in the future to add support for CockroachDB?

aarondl commented 7 years ago

There are no plans for any future databases except those that others submit like the sqlite3 PR that's currently opened.

I think that trying to masquerade cockroachdb as postgres would work for actually generating and running (you can try this, it's not hard). But the generated tests will fail since they shell out to postgres' command line tools.