apache-airflow-providers-exasol 4.4.1rc1__py3-none-any.whl → 4.4.2__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.
Potentially problematic release.
This version of apache-airflow-providers-exasol might be problematic. Click here for more details.
- airflow/providers/exasol/__init__.py +1 -1
- airflow/providers/exasol/get_provider_info.py +4 -3
- airflow/providers/exasol/hooks/exasol.py +4 -2
- {apache_airflow_providers_exasol-4.4.1rc1.dist-info → apache_airflow_providers_exasol-4.4.2.dist-info}/METADATA +10 -10
- apache_airflow_providers_exasol-4.4.2.dist-info/RECORD +11 -0
- apache_airflow_providers_exasol-4.4.1rc1.dist-info/RECORD +0 -11
- {apache_airflow_providers_exasol-4.4.1rc1.dist-info → apache_airflow_providers_exasol-4.4.2.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_exasol-4.4.1rc1.dist-info → apache_airflow_providers_exasol-4.4.2.dist-info}/entry_points.txt +0 -0
|
@@ -27,9 +27,10 @@ def get_provider_info():
|
|
|
27
27
|
"package-name": "apache-airflow-providers-exasol",
|
|
28
28
|
"name": "Exasol",
|
|
29
29
|
"description": "`Exasol <https://www.exasol.com/>`__\n",
|
|
30
|
-
"
|
|
31
|
-
"source-date-epoch":
|
|
30
|
+
"state": "ready",
|
|
31
|
+
"source-date-epoch": 1705912087,
|
|
32
32
|
"versions": [
|
|
33
|
+
"4.4.2",
|
|
33
34
|
"4.4.1",
|
|
34
35
|
"4.4.0",
|
|
35
36
|
"4.3.0",
|
|
@@ -61,7 +62,7 @@ def get_provider_info():
|
|
|
61
62
|
"apache-airflow>=2.6.0",
|
|
62
63
|
"apache-airflow-providers-common-sql>=1.10.0",
|
|
63
64
|
"pyexasol>=0.5.1",
|
|
64
|
-
"pandas>=
|
|
65
|
+
"pandas>=1.2.5",
|
|
65
66
|
],
|
|
66
67
|
"integrations": [
|
|
67
68
|
{
|
|
@@ -162,7 +162,7 @@ class ExasolHook(DbApiHook):
|
|
|
162
162
|
)
|
|
163
163
|
return cols
|
|
164
164
|
|
|
165
|
-
@overload
|
|
165
|
+
@overload # type: ignore[override]
|
|
166
166
|
def run(
|
|
167
167
|
self,
|
|
168
168
|
sql: str | Iterable[str],
|
|
@@ -232,7 +232,9 @@ class ExasolHook(DbApiHook):
|
|
|
232
232
|
with closing(conn.execute(sql_statement, parameters)) as exa_statement:
|
|
233
233
|
self.log.info("Running statement: %s, parameters: %s", sql_statement, parameters)
|
|
234
234
|
if handler is not None:
|
|
235
|
-
result = self._make_common_data_structure(
|
|
235
|
+
result = self._make_common_data_structure( # type: ignore[attr-defined]
|
|
236
|
+
handler(exa_statement)
|
|
237
|
+
)
|
|
236
238
|
if return_single_query_results(sql, return_last, split_statements):
|
|
237
239
|
_last_result = result
|
|
238
240
|
_last_columns = self.get_description(exa_statement)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: apache-airflow-providers-exasol
|
|
3
|
-
Version: 4.4.
|
|
3
|
+
Version: 4.4.2
|
|
4
4
|
Summary: Provider package apache-airflow-providers-exasol for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,exasol,airflow,integration
|
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
@@ -20,14 +20,14 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.10
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.11
|
|
22
22
|
Classifier: Topic :: System :: Monitoring
|
|
23
|
-
Requires-Dist: apache-airflow-providers-common-sql>=1.10.0
|
|
24
|
-
Requires-Dist: apache-airflow>=2.6.0
|
|
25
|
-
Requires-Dist: pandas>=
|
|
23
|
+
Requires-Dist: apache-airflow-providers-common-sql>=1.10.0
|
|
24
|
+
Requires-Dist: apache-airflow>=2.6.0
|
|
25
|
+
Requires-Dist: pandas>=1.2.5
|
|
26
26
|
Requires-Dist: pyexasol>=0.5.1
|
|
27
27
|
Requires-Dist: apache-airflow-providers-common-sql ; extra == "common.sql"
|
|
28
28
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
29
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.4.
|
|
30
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.4.
|
|
29
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.4.2/changelog.html
|
|
30
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.4.2
|
|
31
31
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
32
32
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
33
33
|
Project-URL: Twitter, https://twitter.com/ApacheAirflow
|
|
@@ -78,7 +78,7 @@ Provides-Extra: common.sql
|
|
|
78
78
|
|
|
79
79
|
Package ``apache-airflow-providers-exasol``
|
|
80
80
|
|
|
81
|
-
Release: ``4.4.
|
|
81
|
+
Release: ``4.4.2``
|
|
82
82
|
|
|
83
83
|
|
|
84
84
|
`Exasol <https://www.exasol.com/>`__
|
|
@@ -91,7 +91,7 @@ This is a provider package for ``exasol`` provider. All classes for this provide
|
|
|
91
91
|
are in ``airflow.providers.exasol`` python package.
|
|
92
92
|
|
|
93
93
|
You can find package information and changelog for the provider
|
|
94
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.4.
|
|
94
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.4.2/>`_.
|
|
95
95
|
|
|
96
96
|
Installation
|
|
97
97
|
------------
|
|
@@ -111,7 +111,7 @@ PIP package Version required
|
|
|
111
111
|
``apache-airflow`` ``>=2.6.0``
|
|
112
112
|
``apache-airflow-providers-common-sql`` ``>=1.10.0``
|
|
113
113
|
``pyexasol`` ``>=0.5.1``
|
|
114
|
-
``pandas`` ``>=
|
|
114
|
+
``pandas`` ``>=1.2.5``
|
|
115
115
|
======================================= ==================
|
|
116
116
|
|
|
117
117
|
Cross provider package dependencies
|
|
@@ -134,4 +134,4 @@ Dependent package
|
|
|
134
134
|
============================================================================================================ ==============
|
|
135
135
|
|
|
136
136
|
The changelog for the provider package can be found in the
|
|
137
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.4.
|
|
137
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.4.2/changelog.html>`_.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
airflow/providers/exasol/LICENSE,sha256=ywUBpKZc7Jb96rVt5I3IDbg7dIJAbUSHkuoDcF3jbH4,13569
|
|
2
|
+
airflow/providers/exasol/__init__.py,sha256=SIrLIfudfXilPpGFG1N22jl5Tw-6_iRcO_b4WURSbdA,1581
|
|
3
|
+
airflow/providers/exasol/get_provider_info.py,sha256=WepuwfPmHVIj2-4Df2z2IsGzj4AnWcGWRotzRaEGfqc,2868
|
|
4
|
+
airflow/providers/exasol/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
5
|
+
airflow/providers/exasol/hooks/exasol.py,sha256=VOKoWzNhx5xfD0fXGrNt_tGj8wWXpZxLQ10Tels2aH8,11901
|
|
6
|
+
airflow/providers/exasol/operators/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
7
|
+
airflow/providers/exasol/operators/exasol.py,sha256=zXfWorHjY804i0vWTZP-01t0QLdE3rrn1WVLDxD2mro,2447
|
|
8
|
+
apache_airflow_providers_exasol-4.4.2.dist-info/entry_points.txt,sha256=8pvKoFs3wCXkl3x0a5dzqvTonx17I8zD8oodM_M386Q,102
|
|
9
|
+
apache_airflow_providers_exasol-4.4.2.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
10
|
+
apache_airflow_providers_exasol-4.4.2.dist-info/METADATA,sha256=i9GHAHsrjH_JjypdnOG05hBGUyTDOLDbUbv6mck7G-E,6132
|
|
11
|
+
apache_airflow_providers_exasol-4.4.2.dist-info/RECORD,,
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
airflow/providers/exasol/LICENSE,sha256=ywUBpKZc7Jb96rVt5I3IDbg7dIJAbUSHkuoDcF3jbH4,13569
|
|
2
|
-
airflow/providers/exasol/__init__.py,sha256=QurOI0SHBIgmECBzWhgfgJ6PMZ4tqSUyx9lT-s89IEM,1581
|
|
3
|
-
airflow/providers/exasol/get_provider_info.py,sha256=CKKiDd9y7I6Kvay4xjrfGnQp1axbvg6XrizGruaVwds,2850
|
|
4
|
-
airflow/providers/exasol/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
5
|
-
airflow/providers/exasol/hooks/exasol.py,sha256=7wxXsMswQ5t5K4XL1oq-_PBABeld4Mw-R7wep5g9GWs,11791
|
|
6
|
-
airflow/providers/exasol/operators/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
7
|
-
airflow/providers/exasol/operators/exasol.py,sha256=zXfWorHjY804i0vWTZP-01t0QLdE3rrn1WVLDxD2mro,2447
|
|
8
|
-
apache_airflow_providers_exasol-4.4.1rc1.dist-info/entry_points.txt,sha256=8pvKoFs3wCXkl3x0a5dzqvTonx17I8zD8oodM_M386Q,102
|
|
9
|
-
apache_airflow_providers_exasol-4.4.1rc1.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
10
|
-
apache_airflow_providers_exasol-4.4.1rc1.dist-info/METADATA,sha256=l6B0eSDo9CNeiqR8Kx8TRPmjHogkvRw7rZkdtWa3xkQ,6151
|
|
11
|
-
apache_airflow_providers_exasol-4.4.1rc1.dist-info/RECORD,,
|
|
File without changes
|