SatishChGit commented on code in PR #39208:
URL: https://github.com/apache/airflow/pull/39208#discussion_r1579235882


##########
airflow/providers/teradata/hooks/teradata.py:
##########
@@ -187,3 +198,59 @@ def get_ui_field_behaviour() -> dict:
                 "password": "dbc",
             },
         }
+
+    def callproc(
+        self,
+        identifier: str,
+        autocommit: bool = False,
+        parameters: list | dict | None = None,
+    ) -> list | dict | tuple | None:
+        """
+        Call the stored procedure identified by the provided string.
+
+        Any OUT parameters must be provided with a value of either the
+        expected Python type (e.g., `int`) or an instance of that type.
+
+        :param identifier: stored procedure name
+        :param autocommit: What to set the connection's autocommit setting to
+            before executing the query.
+        :param parameters: The IN, OUT and INOUT parameters for Teradata

Review Comment:
   After this modification, encountering a pre-commit check failure persists if 
an entry was deleted from docs/spelling_wordlist.txt, as evidenced below
   
   
![image](https://github.com/apache/airflow/assets/23031170/b363f9df-2a6f-4a31-9553-7a509bc81da6)
   



-- 
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]

Reply via email to