From 5dd6e5dea868382a2f6a43d019c138633fe51e57 Mon Sep 17 00:00:00 2001 From: ZoranPandovski Date: Tue, 5 Aug 2025 01:08:51 +0200 Subject: [PATCH] Rmv snowflake handler info --- .../snowflake_handler/snowflake_handler.py | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py b/mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py index 4de2852de34..fbb98f39ce3 100644 --- a/mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +++ b/mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py @@ -707,20 +707,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." - )