apache-airflow-providers-teradata 3.2.2__py3-none-any.whl → 3.2.3rc1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- airflow/providers/teradata/__init__.py +1 -1
- airflow/providers/teradata/get_provider_info.py +14 -1
- airflow/providers/teradata/hooks/bteq.py +1 -1
- {apache_airflow_providers_teradata-3.2.2.dist-info → apache_airflow_providers_teradata-3.2.3rc1.dist-info}/METADATA +12 -10
- {apache_airflow_providers_teradata-3.2.2.dist-info → apache_airflow_providers_teradata-3.2.3rc1.dist-info}/RECORD +9 -8
- apache_airflow_providers_teradata-3.2.3rc1.dist-info/licenses/NOTICE +5 -0
- {apache_airflow_providers_teradata-3.2.2.dist-info → apache_airflow_providers_teradata-3.2.3rc1.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_teradata-3.2.2.dist-info → apache_airflow_providers_teradata-3.2.3rc1.dist-info}/entry_points.txt +0 -0
- {airflow/providers/teradata → apache_airflow_providers_teradata-3.2.3rc1.dist-info/licenses}/LICENSE +0 -0
|
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
|
|
|
29
29
|
|
|
30
30
|
__all__ = ["__version__"]
|
|
31
31
|
|
|
32
|
-
__version__ = "3.2.
|
|
32
|
+
__version__ = "3.2.3"
|
|
33
33
|
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
|
35
35
|
"2.10.0"
|
|
@@ -36,7 +36,20 @@ def get_provider_info():
|
|
|
36
36
|
],
|
|
37
37
|
"logo": "/docs/integration-logos/Teradata.png",
|
|
38
38
|
"tags": ["software"],
|
|
39
|
-
}
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"integration-name": "Bteq",
|
|
42
|
+
"external-doc-url": "https://www.teradata.com/",
|
|
43
|
+
"how-to-guide": ["/docs/apache-airflow-providers-teradata/operators/bteq.rst"],
|
|
44
|
+
"logo": "/docs/integration-logos/Teradata.png",
|
|
45
|
+
"tags": ["software"],
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"integration-name": "Ttu",
|
|
49
|
+
"external-doc-url": "https://www.teradata.com/",
|
|
50
|
+
"logo": "/docs/integration-logos/Teradata.png",
|
|
51
|
+
"tags": ["software"],
|
|
52
|
+
},
|
|
40
53
|
],
|
|
41
54
|
"operators": [
|
|
42
55
|
{
|
|
@@ -263,7 +263,7 @@ class BteqHook(TtuHook):
|
|
|
263
263
|
stdout=subprocess.PIPE,
|
|
264
264
|
stderr=subprocess.STDOUT,
|
|
265
265
|
shell=True,
|
|
266
|
-
|
|
266
|
+
start_new_session=True,
|
|
267
267
|
)
|
|
268
268
|
encode_bteq_script = bteq_script.encode(str(temp_file_read_encoding or "UTF-8"))
|
|
269
269
|
stdout_data, _ = process.communicate(input=encode_bteq_script)
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-airflow-providers-teradata
|
|
3
|
-
Version: 3.2.
|
|
3
|
+
Version: 3.2.3rc1
|
|
4
4
|
Summary: Provider package apache-airflow-providers-teradata for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,teradata,airflow,integration
|
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
7
7
|
Maintainer-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
8
8
|
Requires-Python: >=3.10
|
|
9
9
|
Description-Content-Type: text/x-rst
|
|
10
|
+
License-Expression: Apache-2.0
|
|
10
11
|
Classifier: Development Status :: 5 - Production/Stable
|
|
11
12
|
Classifier: Environment :: Console
|
|
12
13
|
Classifier: Environment :: Web Environment
|
|
@@ -14,23 +15,24 @@ Classifier: Intended Audience :: Developers
|
|
|
14
15
|
Classifier: Intended Audience :: System Administrators
|
|
15
16
|
Classifier: Framework :: Apache Airflow
|
|
16
17
|
Classifier: Framework :: Apache Airflow :: Provider
|
|
17
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.10
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.11
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.12
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.13
|
|
22
22
|
Classifier: Topic :: System :: Monitoring
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
Requires-Dist: apache-airflow
|
|
23
|
+
License-File: LICENSE
|
|
24
|
+
License-File: NOTICE
|
|
25
|
+
Requires-Dist: apache-airflow>=2.10.0rc1
|
|
26
|
+
Requires-Dist: apache-airflow-providers-common-compat>=1.8.0rc1
|
|
27
|
+
Requires-Dist: apache-airflow-providers-common-sql>=1.20.0rc1
|
|
26
28
|
Requires-Dist: teradatasqlalchemy>=17.20.0.0
|
|
27
29
|
Requires-Dist: teradatasql>=17.20.0.28
|
|
28
30
|
Requires-Dist: apache-airflow-providers-amazon ; extra == "amazon"
|
|
29
31
|
Requires-Dist: apache-airflow-providers-microsoft-azure ; extra == "microsoft-azure"
|
|
30
32
|
Requires-Dist: apache-airflow-providers-ssh ; extra == "ssh"
|
|
31
33
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
32
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.2.
|
|
33
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.2.
|
|
34
|
+
Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-teradata/3.2.3/changelog.html
|
|
35
|
+
Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-teradata/3.2.3
|
|
34
36
|
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
|
35
37
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
36
38
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
@@ -64,7 +66,7 @@ Provides-Extra: ssh
|
|
|
64
66
|
|
|
65
67
|
Package ``apache-airflow-providers-teradata``
|
|
66
68
|
|
|
67
|
-
Release: ``3.2.
|
|
69
|
+
Release: ``3.2.3``
|
|
68
70
|
|
|
69
71
|
|
|
70
72
|
`Teradata <https://www.teradata.com/>`__
|
|
@@ -77,7 +79,7 @@ This is a provider package for ``teradata`` provider. All classes for this provi
|
|
|
77
79
|
are in ``airflow.providers.teradata`` python package.
|
|
78
80
|
|
|
79
81
|
You can find package information and changelog for the provider
|
|
80
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.2.
|
|
82
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.2.3/>`_.
|
|
81
83
|
|
|
82
84
|
Installation
|
|
83
85
|
------------
|
|
@@ -136,5 +138,5 @@ Extra Dependencies
|
|
|
136
138
|
=================== ============================================
|
|
137
139
|
|
|
138
140
|
The changelog for the provider package can be found in the
|
|
139
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.2.
|
|
141
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.2.3/changelog.html>`_.
|
|
140
142
|
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
airflow/providers/teradata/
|
|
2
|
-
airflow/providers/teradata/
|
|
3
|
-
airflow/providers/teradata/get_provider_info.py,sha256=SF-3YIl3CCi6mN6b9EEqLkJNyuMIM35CvY_H91QdELw,4031
|
|
1
|
+
airflow/providers/teradata/__init__.py,sha256=qjJ9Qyz4bJN2cEDbUkvumx6pUztx92At8JG0f66UwNQ,1497
|
|
2
|
+
airflow/providers/teradata/get_provider_info.py,sha256=NNVCUdS1bDvLBLUEDVe8cFP-eGnW4TgmZMgErIN-oUc,4607
|
|
4
3
|
airflow/providers/teradata/version_compat.py,sha256=cmeoGMcTp0kiFa3GKZlQh31_kMk7UX9nOX8sYyGtuFg,1665
|
|
5
4
|
airflow/providers/teradata/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
6
|
-
airflow/providers/teradata/hooks/bteq.py,sha256=
|
|
5
|
+
airflow/providers/teradata/hooks/bteq.py,sha256=lAE63jZFgWLlqGkTGxRFkMErdQUgy48Bbi0vegRmdPg,15007
|
|
7
6
|
airflow/providers/teradata/hooks/teradata.py,sha256=k_u9iJsuwjr7-jdBkEGd_m4yjVfWwDrV0pXrbjUrxPE,11572
|
|
8
7
|
airflow/providers/teradata/hooks/ttu.py,sha256=Mc-CFcF_v6McbkzhP8gMWWMmjNCwFuVduqoDu98_8ow,3689
|
|
9
8
|
airflow/providers/teradata/operators/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
@@ -20,7 +19,9 @@ airflow/providers/teradata/utils/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xS
|
|
|
20
19
|
airflow/providers/teradata/utils/bteq_util.py,sha256=GCIPc1PCIOC-YWwxgYHr-N1d7X8ZGPU5Lmax_JZY6rA,7360
|
|
21
20
|
airflow/providers/teradata/utils/constants.py,sha256=daNhA6ixICQi2lqliSXHezBEVcibL_kOBq6hOZTCGdM,3090
|
|
22
21
|
airflow/providers/teradata/utils/encryption_utils.py,sha256=ARGWmgBbvSq6_MQHfTevvfvHjaiBjQI62UXltDcJLJo,2578
|
|
23
|
-
apache_airflow_providers_teradata-3.2.
|
|
24
|
-
apache_airflow_providers_teradata-3.2.
|
|
25
|
-
apache_airflow_providers_teradata-3.2.
|
|
26
|
-
apache_airflow_providers_teradata-3.2.
|
|
22
|
+
apache_airflow_providers_teradata-3.2.3rc1.dist-info/entry_points.txt,sha256=JbigXoUoKVSNWG-_-029FCCuehMOmAvuSnNGZ9Bz1Kc,104
|
|
23
|
+
apache_airflow_providers_teradata-3.2.3rc1.dist-info/licenses/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
|
|
24
|
+
apache_airflow_providers_teradata-3.2.3rc1.dist-info/licenses/NOTICE,sha256=E3-_E02gwwSEFzeeWPKmnIjOoos3hW28CLISV6sYrbQ,168
|
|
25
|
+
apache_airflow_providers_teradata-3.2.3rc1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
26
|
+
apache_airflow_providers_teradata-3.2.3rc1.dist-info/METADATA,sha256=XOS1DyiOQhMOxrd96NVOcQ2ld-MYrW83pYYeIe_kOEc,6767
|
|
27
|
+
apache_airflow_providers_teradata-3.2.3rc1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{airflow/providers/teradata → apache_airflow_providers_teradata-3.2.3rc1.dist-info/licenses}/LICENSE
RENAMED
|
File without changes
|