Merge pull request #1140 from getredash/random

Fix: Hive should use the enabled variable
This commit is contained in:
Arik Fraimovich
2016-06-17 18:06:54 +03:00
committed by GitHub

View File

@@ -64,6 +64,10 @@ class Hive(BaseSQLQueryRunner):
def type(cls):
return "hive"
@classmethod
def enabled(cls):
return enabled
def __init__(self, configuration):
super(Hive, self).__init__(configuration)