mirror of
https://github.com/apache/superset.git
synced 2026-04-20 00:24:38 +00:00
feat(sqllab): TRINO_EXPAND_ROWS: expand columns from ROWs (#25809)
This commit is contained in:
@@ -410,9 +410,13 @@ class HiveEngineSpec(PrestoEngineSpec):
|
||||
|
||||
@classmethod
|
||||
def get_columns(
|
||||
cls, inspector: Inspector, table_name: str, schema: str | None
|
||||
cls,
|
||||
inspector: Inspector,
|
||||
table_name: str,
|
||||
schema: str | None,
|
||||
options: dict[str, Any] | None = None,
|
||||
) -> list[ResultSetColumnType]:
|
||||
return BaseEngineSpec.get_columns(inspector, table_name, schema)
|
||||
return BaseEngineSpec.get_columns(inspector, table_name, schema, options)
|
||||
|
||||
@classmethod
|
||||
def where_latest_partition( # pylint: disable=too-many-arguments
|
||||
|
||||
Reference in New Issue
Block a user