diff --git a/mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py b/mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py index 8ccbc63bb00..1bfdee307f7 100644 --- a/mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +++ b/mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py @@ -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." - )