Source code for airflow.providers.teradata.operators.teradata
## Licensed to the Apache Software Foundation (ASF) under one# or more contributor license agreements. See the NOTICE file# distributed with this work for additional information# regarding copyright ownership. The ASF licenses this file# to you under the Apache License, Version 2.0 (the# "License"); you may not use this file except in compliance# with the License. You may obtain a copy of the License at## http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing,# software distributed under the License is distributed on an# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY# KIND, either express or implied. See the License for the# specific language governing permissions and limitations# under the License.from__future__importannotationsfromcollections.abcimportSequencefromtypingimportTYPE_CHECKING,ClassVarfromairflow.modelsimportBaseOperatorfromairflow.providers.common.sql.operators.sqlimportSQLExecuteQueryOperatorfromairflow.providers.teradata.hooks.teradataimportTeradataHookifTYPE_CHECKING:try:fromairflow.sdk.definitions.contextimportContextexceptImportError:# TODO: Remove once provider drops support for Airflow 2fromairflow.utils.contextimportContext
[docs]classTeradataOperator(SQLExecuteQueryOperator):""" General Teradata Operator to execute queries on Teradata Database. Executes sql statements in the Teradata SQL Database using Teradata Python SQL Driver .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:TeradataOperator` :param sql: the SQL query to be executed as a single string, or a list of str (sql statements) :param teradata_conn_id: reference to a predefined database :param autocommit: if True, each command is automatically committed.(default value: False) :param parameters: (optional) the parameters to render the SQL query with. :param schema: The Teradata database to connect to. """
[docs]classTeradataStoredProcedureOperator(BaseOperator):""" Executes stored procedure in a specific Teradata database. :param procedure: name of stored procedure to call (templated) :param teradata_conn_id: The :ref:`Teradata connection id <howto/connection:teradata>` reference to a specific Teradata database. :param parameters: (optional, templated) the parameters provided in the call """