Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -708,20 +708,3 @@ def meta_get_foreign_keys(self, table_names: Optional[List[str]] = None) -> Resp
logger.error(f"Exception in meta_get_primary_keys: {e!r}")
return Response(RESPONSE_TYPE.ERROR, error_message=f"Exception querying primary keys: {e!r}")

def meta_get_handler_info(self, **kwargs: Any) -> str:
"""
Retrieves information about the design and implementation of the database handler.
This should include, but not be limited to, the following:
- The type of SQL queries and operations that the handler supports.
- etc.

Args:
kwargs: Additional keyword arguments that may be used in generating the handler information.

Returns:
str: A string containing information about the database handler's design and implementation.
"""
return (
"To query columns that contain special characters, use ticks around the column name, e.g. `column name`.\n"
"DO NOT use double quotes for this purpose."
)
Loading