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


##########
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:
   Closed this PR and raise new PR https://github.com/apache/airflow/pull/39217 



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