feat(sqllab): TRINO_EXPAND_ROWS: expand columns from ROWs (#25809)

This commit is contained in:
Rob Moore
2023-11-20 17:59:10 +00:00
committed by GitHub
parent 411dba240b
commit 8d73ab9955
12 changed files with 268 additions and 23 deletions

View File

@@ -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