apache-airflow-providers-exasol 4.7.0rc1__py3-none-any.whl → 4.7.1__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/LICENSE +0 -52
- airflow/providers/exasol/__init__.py +1 -1
- airflow/providers/exasol/get_provider_info.py +10 -11
- airflow/providers/exasol/hooks/exasol.py +1 -1
- {apache_airflow_providers_exasol-4.7.0rc1.dist-info → apache_airflow_providers_exasol-4.7.1.dist-info}/METADATA +15 -34
- apache_airflow_providers_exasol-4.7.1.dist-info/RECORD +11 -0
- apache_airflow_providers_exasol-4.7.0rc1.dist-info/RECORD +0 -11
- {apache_airflow_providers_exasol-4.7.0rc1.dist-info → apache_airflow_providers_exasol-4.7.1.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_exasol-4.7.0rc1.dist-info → apache_airflow_providers_exasol-4.7.1.dist-info}/entry_points.txt +0 -0
airflow/providers/exasol/LICENSE
CHANGED
|
@@ -199,55 +199,3 @@ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
199
199
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
200
|
See the License for the specific language governing permissions and
|
|
201
201
|
limitations under the License.
|
|
202
|
-
|
|
203
|
-
============================================================================
|
|
204
|
-
APACHE AIRFLOW SUBCOMPONENTS:
|
|
205
|
-
|
|
206
|
-
The Apache Airflow project contains subcomponents with separate copyright
|
|
207
|
-
notices and license terms. Your use of the source code for the these
|
|
208
|
-
subcomponents is subject to the terms and conditions of the following
|
|
209
|
-
licenses.
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
========================================================================
|
|
213
|
-
Third party Apache 2.0 licenses
|
|
214
|
-
========================================================================
|
|
215
|
-
|
|
216
|
-
The following components are provided under the Apache 2.0 License.
|
|
217
|
-
See project link for details. The text of each license is also included
|
|
218
|
-
at 3rd-party-licenses/LICENSE-[project].txt.
|
|
219
|
-
|
|
220
|
-
(ALv2 License) hue v4.3.0 (https://github.com/cloudera/hue/)
|
|
221
|
-
(ALv2 License) jqclock v2.3.0 (https://github.com/JohnRDOrazio/jQuery-Clock-Plugin)
|
|
222
|
-
(ALv2 License) bootstrap3-typeahead v4.0.2 (https://github.com/bassjobsen/Bootstrap-3-Typeahead)
|
|
223
|
-
(ALv2 License) connexion v2.7.0 (https://github.com/zalando/connexion)
|
|
224
|
-
|
|
225
|
-
========================================================================
|
|
226
|
-
MIT licenses
|
|
227
|
-
========================================================================
|
|
228
|
-
|
|
229
|
-
The following components are provided under the MIT License. See project link for details.
|
|
230
|
-
The text of each license is also included at 3rd-party-licenses/LICENSE-[project].txt.
|
|
231
|
-
|
|
232
|
-
(MIT License) jquery v3.5.1 (https://jquery.org/license/)
|
|
233
|
-
(MIT License) dagre-d3 v0.6.4 (https://github.com/cpettitt/dagre-d3)
|
|
234
|
-
(MIT License) bootstrap v3.4.1 (https://github.com/twbs/bootstrap/)
|
|
235
|
-
(MIT License) d3-tip v0.9.1 (https://github.com/Caged/d3-tip)
|
|
236
|
-
(MIT License) dataTables v1.10.25 (https://datatables.net)
|
|
237
|
-
(MIT License) normalize.css v3.0.2 (http://necolas.github.io/normalize.css/)
|
|
238
|
-
(MIT License) ElasticMock v1.3.2 (https://github.com/vrcmarcos/elasticmock)
|
|
239
|
-
(MIT License) MomentJS v2.24.0 (http://momentjs.com/)
|
|
240
|
-
(MIT License) eonasdan-bootstrap-datetimepicker v4.17.49 (https://github.com/eonasdan/bootstrap-datetimepicker/)
|
|
241
|
-
|
|
242
|
-
========================================================================
|
|
243
|
-
BSD 3-Clause licenses
|
|
244
|
-
========================================================================
|
|
245
|
-
The following components are provided under the BSD 3-Clause license. See project links for details.
|
|
246
|
-
The text of each license is also included at 3rd-party-licenses/LICENSE-[project].txt.
|
|
247
|
-
|
|
248
|
-
(BSD 3 License) d3 v5.16.0 (https://d3js.org)
|
|
249
|
-
(BSD 3 License) d3-shape v2.1.0 (https://github.com/d3/d3-shape)
|
|
250
|
-
(BSD 3 License) cgroupspy 0.2.1 (https://github.com/cloudsigma/cgroupspy)
|
|
251
|
-
|
|
252
|
-
========================================================================
|
|
253
|
-
See 3rd-party-licenses/LICENSES-ui.txt for packages used in `/airflow/www`
|
|
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
|
|
|
29
29
|
|
|
30
30
|
__all__ = ["__version__"]
|
|
31
31
|
|
|
32
|
-
__version__ = "4.7.
|
|
32
|
+
__version__ = "4.7.1"
|
|
33
33
|
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
|
35
35
|
"2.9.0"
|
|
@@ -15,8 +15,7 @@
|
|
|
15
15
|
# specific language governing permissions and limitations
|
|
16
16
|
# under the License.
|
|
17
17
|
|
|
18
|
-
# NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE
|
|
19
|
-
# OVERWRITTEN WHEN PREPARING PACKAGES.
|
|
18
|
+
# NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!
|
|
20
19
|
#
|
|
21
20
|
# IF YOU WANT TO MODIFY THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
|
|
22
21
|
# `get_provider_info_TEMPLATE.py.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
|
|
@@ -28,8 +27,9 @@ def get_provider_info():
|
|
|
28
27
|
"name": "Exasol",
|
|
29
28
|
"description": "`Exasol <https://www.exasol.com/>`__\n",
|
|
30
29
|
"state": "ready",
|
|
31
|
-
"source-date-epoch":
|
|
30
|
+
"source-date-epoch": 1739959643,
|
|
32
31
|
"versions": [
|
|
32
|
+
"4.7.1",
|
|
33
33
|
"4.7.0",
|
|
34
34
|
"4.6.1",
|
|
35
35
|
"4.6.0",
|
|
@@ -66,18 +66,11 @@ def get_provider_info():
|
|
|
66
66
|
"1.1.0",
|
|
67
67
|
"1.0.0",
|
|
68
68
|
],
|
|
69
|
-
"dependencies": [
|
|
70
|
-
"apache-airflow>=2.9.0",
|
|
71
|
-
"apache-airflow-providers-common-sql>=1.20.0",
|
|
72
|
-
"pyexasol>=0.5.1",
|
|
73
|
-
'pandas>=2.1.2,<2.2;python_version>="3.9"',
|
|
74
|
-
'pandas>=1.5.3,<2.2;python_version<"3.9"',
|
|
75
|
-
],
|
|
76
69
|
"integrations": [
|
|
77
70
|
{
|
|
78
71
|
"integration-name": "Exasol",
|
|
79
72
|
"external-doc-url": "https://docs.exasol.com/home.htm",
|
|
80
|
-
"logo": "/integration-logos/
|
|
73
|
+
"logo": "/docs/integration-logos/Exasol.png",
|
|
81
74
|
"tags": ["software"],
|
|
82
75
|
}
|
|
83
76
|
],
|
|
@@ -93,4 +86,10 @@ def get_provider_info():
|
|
|
93
86
|
"connection-type": "exasol",
|
|
94
87
|
}
|
|
95
88
|
],
|
|
89
|
+
"dependencies": [
|
|
90
|
+
"apache-airflow>=2.9.0",
|
|
91
|
+
"apache-airflow-providers-common-sql>=1.20.0",
|
|
92
|
+
"pyexasol>=0.5.1",
|
|
93
|
+
"pandas>=2.1.2,<2.2",
|
|
94
|
+
],
|
|
96
95
|
}
|
|
@@ -246,7 +246,7 @@ class ExasolHook(DbApiHook):
|
|
|
246
246
|
else:
|
|
247
247
|
results.append(result)
|
|
248
248
|
self.descriptions.append(self.get_description(exa_statement))
|
|
249
|
-
self.log.info("Rows affected: %s", exa_statement.rowcount)
|
|
249
|
+
self.log.info("Rows affected: %s", exa_statement.rowcount())
|
|
250
250
|
|
|
251
251
|
# If autocommit was set to False or db does not support autocommit, we do a manual commit.
|
|
252
252
|
if not self.get_autocommit(conn):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: apache-airflow-providers-exasol
|
|
3
|
-
Version: 4.7.
|
|
3
|
+
Version: 4.7.1
|
|
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,37 +20,19 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.11
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.12
|
|
22
22
|
Classifier: Topic :: System :: Monitoring
|
|
23
|
-
Requires-Dist: apache-airflow
|
|
24
|
-
Requires-Dist: apache-airflow>=
|
|
25
|
-
Requires-Dist: pandas>=1.5.3,<2.2;python_version<"3.9"
|
|
26
|
-
Requires-Dist: pandas>=2.1.2,<2.2;python_version>="3.9"
|
|
23
|
+
Requires-Dist: apache-airflow>=2.9.0
|
|
24
|
+
Requires-Dist: apache-airflow-providers-common-sql>=1.20.0
|
|
27
25
|
Requires-Dist: pyexasol>=0.5.1
|
|
26
|
+
Requires-Dist: pandas>=2.1.2,<2.2
|
|
28
27
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
29
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.7.
|
|
30
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.7.
|
|
28
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.7.1/changelog.html
|
|
29
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.7.1
|
|
31
30
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
32
31
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
33
32
|
Project-URL: Twitter, https://x.com/ApacheAirflow
|
|
34
33
|
Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
|
35
34
|
|
|
36
35
|
|
|
37
|
-
.. Licensed to the Apache Software Foundation (ASF) under one
|
|
38
|
-
or more contributor license agreements. See the NOTICE file
|
|
39
|
-
distributed with this work for additional information
|
|
40
|
-
regarding copyright ownership. The ASF licenses this file
|
|
41
|
-
to you under the Apache License, Version 2.0 (the
|
|
42
|
-
"License"); you may not use this file except in compliance
|
|
43
|
-
with the License. You may obtain a copy of the License at
|
|
44
|
-
|
|
45
|
-
.. http://www.apache.org/licenses/LICENSE-2.0
|
|
46
|
-
|
|
47
|
-
.. Unless required by applicable law or agreed to in writing,
|
|
48
|
-
software distributed under the License is distributed on an
|
|
49
|
-
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
50
|
-
KIND, either express or implied. See the License for the
|
|
51
|
-
specific language governing permissions and limitations
|
|
52
|
-
under the License.
|
|
53
|
-
|
|
54
36
|
.. Licensed to the Apache Software Foundation (ASF) under one
|
|
55
37
|
or more contributor license agreements. See the NOTICE file
|
|
56
38
|
distributed with this work for additional information
|
|
@@ -68,8 +50,7 @@ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
|
|
68
50
|
specific language governing permissions and limitations
|
|
69
51
|
under the License.
|
|
70
52
|
|
|
71
|
-
.. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE
|
|
72
|
-
OVERWRITTEN WHEN PREPARING PACKAGES.
|
|
53
|
+
.. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!
|
|
73
54
|
|
|
74
55
|
.. IF YOU WANT TO MODIFY TEMPLATE FOR THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
|
|
75
56
|
`PROVIDER_README_TEMPLATE.rst.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
|
|
@@ -77,7 +58,7 @@ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
|
|
77
58
|
|
|
78
59
|
Package ``apache-airflow-providers-exasol``
|
|
79
60
|
|
|
80
|
-
Release: ``4.7.
|
|
61
|
+
Release: ``4.7.1``
|
|
81
62
|
|
|
82
63
|
|
|
83
64
|
`Exasol <https://www.exasol.com/>`__
|
|
@@ -90,7 +71,7 @@ This is a provider package for ``exasol`` provider. All classes for this provide
|
|
|
90
71
|
are in ``airflow.providers.exasol`` python package.
|
|
91
72
|
|
|
92
73
|
You can find package information and changelog for the provider
|
|
93
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.7.
|
|
74
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.7.1/>`_.
|
|
94
75
|
|
|
95
76
|
Installation
|
|
96
77
|
------------
|
|
@@ -104,15 +85,14 @@ The package supports the following python versions: 3.9,3.10,3.11,3.12
|
|
|
104
85
|
Requirements
|
|
105
86
|
------------
|
|
106
87
|
|
|
107
|
-
=======================================
|
|
88
|
+
======================================= ==================
|
|
108
89
|
PIP package Version required
|
|
109
|
-
=======================================
|
|
90
|
+
======================================= ==================
|
|
110
91
|
``apache-airflow`` ``>=2.9.0``
|
|
111
92
|
``apache-airflow-providers-common-sql`` ``>=1.20.0``
|
|
112
93
|
``pyexasol`` ``>=0.5.1``
|
|
113
|
-
``pandas`` ``>=2.1.2,<2.2
|
|
114
|
-
|
|
115
|
-
======================================= =========================================
|
|
94
|
+
``pandas`` ``>=2.1.2,<2.2``
|
|
95
|
+
======================================= ==================
|
|
116
96
|
|
|
117
97
|
Cross provider package dependencies
|
|
118
98
|
-----------------------------------
|
|
@@ -134,4 +114,5 @@ Dependent package
|
|
|
134
114
|
============================================================================================================ ==============
|
|
135
115
|
|
|
136
116
|
The changelog for the provider package can be found in the
|
|
137
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.7.
|
|
117
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.7.1/changelog.html>`_.
|
|
118
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
airflow/providers/exasol/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
|
|
2
|
+
airflow/providers/exasol/__init__.py,sha256=JD6Ezlx5-GQhPBMKXYuBvAz1-Y6h79lbUEjfmK21j2c,1493
|
|
3
|
+
airflow/providers/exasol/get_provider_info.py,sha256=S7KuklkNZ981jYSfS0YNYaJntS-RpxJoGFY-0t0SC3Y,3034
|
|
4
|
+
airflow/providers/exasol/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
5
|
+
airflow/providers/exasol/hooks/exasol.py,sha256=2BXhgOIVCd8Nea0HcRwuNvtyKVKKF-myG-X37ETZjag,11959
|
|
6
|
+
airflow/providers/exasol/operators/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
7
|
+
airflow/providers/exasol/operators/exasol.py,sha256=A4P3Qo65RJzrSVEgSNwPbJ2BSA9OsitmFm8kutyxVfw,2500
|
|
8
|
+
apache_airflow_providers_exasol-4.7.1.dist-info/entry_points.txt,sha256=8pvKoFs3wCXkl3x0a5dzqvTonx17I8zD8oodM_M386Q,102
|
|
9
|
+
apache_airflow_providers_exasol-4.7.1.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
|
10
|
+
apache_airflow_providers_exasol-4.7.1.dist-info/METADATA,sha256=yNXBBkm8ioQ0oulvg3XlAfi1KnNY1uvc4hVikZHto6E,5211
|
|
11
|
+
apache_airflow_providers_exasol-4.7.1.dist-info/RECORD,,
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
airflow/providers/exasol/LICENSE,sha256=FFb4jd2AXnOOf7XLP04pQW6jbdhG49TxlGY6fFpCV1Y,13609
|
|
2
|
-
airflow/providers/exasol/__init__.py,sha256=daA4_hbq2zPNWDTOmeGAGv9Bmyhy9sSKzZIUcs-9pwM,1493
|
|
3
|
-
airflow/providers/exasol/get_provider_info.py,sha256=gLE0rskk4a8l2sfND6dvRVxlF2xICVvhpQFRJVwsNIg,3118
|
|
4
|
-
airflow/providers/exasol/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
5
|
-
airflow/providers/exasol/hooks/exasol.py,sha256=H0Iq6QpzxkhVaD3-BPiDJTTT8kCzK1tM7MqekiJvguw,11957
|
|
6
|
-
airflow/providers/exasol/operators/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
7
|
-
airflow/providers/exasol/operators/exasol.py,sha256=A4P3Qo65RJzrSVEgSNwPbJ2BSA9OsitmFm8kutyxVfw,2500
|
|
8
|
-
apache_airflow_providers_exasol-4.7.0rc1.dist-info/entry_points.txt,sha256=8pvKoFs3wCXkl3x0a5dzqvTonx17I8zD8oodM_M386Q,102
|
|
9
|
-
apache_airflow_providers_exasol-4.7.0rc1.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
|
10
|
-
apache_airflow_providers_exasol-4.7.0rc1.dist-info/METADATA,sha256=Gppo__tLIR-XTUF0Y_TgA22622-wmycgesv60DYJYjo,6302
|
|
11
|
-
apache_airflow_providers_exasol-4.7.0rc1.dist-info/RECORD,,
|
|
File without changes
|