apache-airflow-providers-exasol 4.4.0__py3-none-any.whl → 4.4.1rc1__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.

@@ -27,7 +27,7 @@ import packaging.version
27
27
 
28
28
  __all__ = ["__version__"]
29
29
 
30
- __version__ = "4.4.0"
30
+ __version__ = "4.4.1"
31
31
 
32
32
  try:
33
33
  from airflow import __version__ as airflow_version
@@ -28,8 +28,9 @@ def get_provider_info():
28
28
  "name": "Exasol",
29
29
  "description": "`Exasol <https://www.exasol.com/>`__\n",
30
30
  "suspended": False,
31
- "source-date-epoch": 1701983378,
31
+ "source-date-epoch": 1703288132,
32
32
  "versions": [
33
+ "4.4.1",
33
34
  "4.4.0",
34
35
  "4.3.0",
35
36
  "4.2.5",
@@ -58,7 +59,7 @@ def get_provider_info():
58
59
  ],
59
60
  "dependencies": [
60
61
  "apache-airflow>=2.6.0",
61
- "apache-airflow-providers-common-sql>=1.3.1",
62
+ "apache-airflow-providers-common-sql>=1.10.0",
62
63
  "pyexasol>=0.5.1",
63
64
  "pandas>=0.17.1",
64
65
  ],
@@ -183,7 +183,7 @@ class ExasolHook(DbApiHook):
183
183
  handler: Callable[[Any], T] = ...,
184
184
  split_statements: bool = ...,
185
185
  return_last: bool = ...,
186
- ) -> T | list[T]:
186
+ ) -> tuple | list[tuple] | list[list[tuple] | tuple] | None:
187
187
  ...
188
188
 
189
189
  def run(
@@ -194,7 +194,7 @@ class ExasolHook(DbApiHook):
194
194
  handler: Callable[[Any], T] | None = None,
195
195
  split_statements: bool = False,
196
196
  return_last: bool = True,
197
- ) -> T | list[T] | None:
197
+ ) -> tuple | list[tuple] | list[list[tuple] | tuple] | None:
198
198
  """Run a command or a list of commands.
199
199
 
200
200
  Pass a list of SQL statements to the SQL parameter to get them to
@@ -232,7 +232,7 @@ 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 = handler(exa_statement)
235
+ result = self._make_common_data_structure(handler(exa_statement))
236
236
  if return_single_query_results(sql, return_last, split_statements):
237
237
  _last_result = result
238
238
  _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.0
3
+ Version: 4.4.1rc1
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.3.1
24
- Requires-Dist: apache-airflow>=2.6.0
23
+ Requires-Dist: apache-airflow-providers-common-sql>=1.10.0.dev0
24
+ Requires-Dist: apache-airflow>=2.6.0.dev0
25
25
  Requires-Dist: pandas>=0.17.1
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.0/changelog.html
30
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.4.0
29
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.4.1/changelog.html
30
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.4.1
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.0``
81
+ Release: ``4.4.1.rc1``
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.0/>`_.
94
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.4.1/>`_.
95
95
 
96
96
  Installation
97
97
  ------------
@@ -109,7 +109,7 @@ Requirements
109
109
  PIP package Version required
110
110
  ======================================= ==================
111
111
  ``apache-airflow`` ``>=2.6.0``
112
- ``apache-airflow-providers-common-sql`` ``>=1.3.1``
112
+ ``apache-airflow-providers-common-sql`` ``>=1.10.0``
113
113
  ``pyexasol`` ``>=0.5.1``
114
114
  ``pandas`` ``>=0.17.1``
115
115
  ======================================= ==================
@@ -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.0/changelog.html>`_.
137
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.4.1/changelog.html>`_.
@@ -0,0 +1,11 @@
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,,
@@ -1,11 +0,0 @@
1
- airflow/providers/exasol/LICENSE,sha256=ywUBpKZc7Jb96rVt5I3IDbg7dIJAbUSHkuoDcF3jbH4,13569
2
- airflow/providers/exasol/__init__.py,sha256=aATmbS-NPWEJYuNFCU5Kt-dy2MoRADZbUl1sOb-vFA4,1581
3
- airflow/providers/exasol/get_provider_info.py,sha256=8LcKeZMh8PpkPp7-ukWsWsEuF6pJOGl0pwKU_wLMgM0,2828
4
- airflow/providers/exasol/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
5
- airflow/providers/exasol/hooks/exasol.py,sha256=SnSbn1haRLEWR-pBEdBh4BrcMdfdP0NsPXZgcEZil5E,11678
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.0.dist-info/entry_points.txt,sha256=8pvKoFs3wCXkl3x0a5dzqvTonx17I8zD8oodM_M386Q,102
9
- apache_airflow_providers_exasol-4.4.0.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
10
- apache_airflow_providers_exasol-4.4.0.dist-info/METADATA,sha256=lZd80sO15NGVa5FfmCJw3y1fj-JVDwisVQ5shtEmzOA,6132
11
- apache_airflow_providers_exasol-4.4.0.dist-info/RECORD,,