mirror of
https://github.com/valitydev/redash.git
synced 2024-11-07 17:38:54 +00:00
Merge pull request #2087 from yershalom/add_cockraochdb_ds
Added new CockroachDB DS to redash
This commit is contained in:
commit
3d9d658594
@ -238,5 +238,15 @@ class Redshift(PostgreSQL):
|
||||
|
||||
return schema.values()
|
||||
|
||||
|
||||
class CockroachDB(PostgreSQL):
|
||||
def __init__(self, configuration):
|
||||
super(CockroachDB, self).__init__(configuration)
|
||||
|
||||
@classmethod
|
||||
def type(cls):
|
||||
return "cockroach"
|
||||
|
||||
register(PostgreSQL)
|
||||
register(Redshift)
|
||||
register(CockroachDB)
|
||||
|
Loading…
Reference in New Issue
Block a user