LittleWat commented on code in PR #26131:
URL: https://github.com/apache/superset/pull/26131#discussion_r1410208494
##########
superset/db_engine_specs/presto.py:
##########
@@ -467,7 +468,7 @@ def _partition_query( # pylint:
disable=too-many-arguments,too-many-locals,unus
full_table_name = f"{schema}.{table_name}" if schema else
table_name
partition_select_clause = f"SHOW PARTITIONS FROM {full_table_name}"
else:
- system_table_name = f'"{table_name}$partitions"'
+ system_table_name = f'"{table_name}$partitions"' if not is_trino
else table_name
Review Comment:
even after I made this change, I got the error so I made a draft PR in
trino-python-client repo:
https://github.com/trinodb/trino-python-client/pull/426
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]