mirror of
https://github.com/apache/superset.git
synced 2026-04-19 16:14:52 +00:00
chore: Ensure Mixins are ordered according to the MRO (#26288)
This commit is contained in:
@@ -62,7 +62,7 @@ SYNTAX_ERROR_REGEX = re.compile(
|
||||
)
|
||||
|
||||
|
||||
class MySQLEngineSpec(BaseEngineSpec, BasicParametersMixin):
|
||||
class MySQLEngineSpec(BasicParametersMixin, BaseEngineSpec):
|
||||
engine = "mysql"
|
||||
engine_name = "MySQL"
|
||||
max_column_name_length = 64
|
||||
|
||||
Reference in New Issue
Block a user