mirror of
https://github.com/apache/superset.git
synced 2026-04-18 23:55:00 +00:00
chore: Ensure Mixins are ordered according to the MRO (#26288)
This commit is contained in:
@@ -183,7 +183,7 @@ class PostgresBaseEngineSpec(BaseEngineSpec):
|
||||
return "(timestamp 'epoch' + {col} * interval '1 second')"
|
||||
|
||||
|
||||
class PostgresEngineSpec(PostgresBaseEngineSpec, BasicParametersMixin):
|
||||
class PostgresEngineSpec(BasicParametersMixin, PostgresBaseEngineSpec):
|
||||
engine = "postgresql"
|
||||
engine_aliases = {"postgres"}
|
||||
supports_dynamic_schema = True
|
||||
|
||||
Reference in New Issue
Block a user