koszti commented on a change in pull request #15403:
URL: https://github.com/apache/superset/pull/15403#discussion_r667409338
##########
File path: superset/db_engine_specs/base.py
##########
@@ -1304,6 +1304,30 @@ def get_column_spec(
)
return None
+ @classmethod
+ def get_cancel_query_id(cls, cursor: Any, query: Query) -> Optional[str]:
+ """
+ Select identifiers from the database engine that uniquely identifies
the
+ queries to cancel. The identifier is typically a session id, process id
+ or similar.
+
+ :param cursor: Cursor instance in which the query will be executed
+ :param query: Query instance
+ :return: Query identifier
+ """
+ return None
+
+ @classmethod
+ def cancel_query(cls, cursor: Any, query: Query, cancel_query_id: str) ->
None:
Review comment:
addressed by 517c7928dfee2412b96836957a2efd2b5953c1e5
--
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]