apache-airflow-providers-common-sql 1.28.0rc1__py3-none-any.whl → 1.28.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-common-sql might be problematic. Click here for more details.
- airflow/providers/common/sql/__init__.py +1 -1
- airflow/providers/common/sql/operators/sql.py +1 -1
- {apache_airflow_providers_common_sql-1.28.0rc1.dist-info → apache_airflow_providers_common_sql-1.28.1.dist-info}/METADATA +18 -7
- {apache_airflow_providers_common_sql-1.28.0rc1.dist-info → apache_airflow_providers_common_sql-1.28.1.dist-info}/RECORD +6 -6
- {apache_airflow_providers_common_sql-1.28.0rc1.dist-info → apache_airflow_providers_common_sql-1.28.1.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_common_sql-1.28.0rc1.dist-info → apache_airflow_providers_common_sql-1.28.1.dist-info}/entry_points.txt +0 -0
|
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
|
|
|
29
29
|
|
|
30
30
|
__all__ = ["__version__"]
|
|
31
31
|
|
|
32
|
-
__version__ = "1.28.
|
|
32
|
+
__version__ = "1.28.1"
|
|
33
33
|
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
|
35
35
|
"2.10.0"
|
|
@@ -1359,7 +1359,7 @@ class SQLInsertRowsOperator(BaseSQLOperator):
|
|
|
1359
1359
|
return self.columns
|
|
1360
1360
|
|
|
1361
1361
|
def _process_rows(self, context: Context):
|
|
1362
|
-
return self._rows_processor(
|
|
1362
|
+
return self._rows_processor(self.rows, **context) # type: ignore
|
|
1363
1363
|
|
|
1364
1364
|
def execute(self, context: Context) -> Any:
|
|
1365
1365
|
if not self.rows:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-airflow-providers-common-sql
|
|
3
|
-
Version: 1.28.
|
|
3
|
+
Version: 1.28.1
|
|
4
4
|
Summary: Provider package apache-airflow-providers-common-sql for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,common.sql,airflow,integration
|
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
@@ -20,7 +20,7 @@ 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
|
-
Requires-Dist: apache-airflow>=2.10.
|
|
23
|
+
Requires-Dist: apache-airflow>=2.10.0
|
|
24
24
|
Requires-Dist: sqlparse>=0.5.1
|
|
25
25
|
Requires-Dist: more-itertools>=9.0.0
|
|
26
26
|
Requires-Dist: methodtools>=0.4.7
|
|
@@ -29,8 +29,8 @@ Requires-Dist: pandas[sql-other]>=2.1.2 ; extra == "pandas" and ( python_version
|
|
|
29
29
|
Requires-Dist: pandas>=2.2.3 ; extra == "pandas" and ( python_version >="3.13")
|
|
30
30
|
Requires-Dist: polars>=1.26.0 ; extra == "polars"
|
|
31
31
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
32
|
-
Project-URL: Changelog, https://airflow.
|
|
33
|
-
Project-URL: Documentation, https://airflow.
|
|
32
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-common-sql/1.28.1/changelog.html
|
|
33
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-common-sql/1.28.1
|
|
34
34
|
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
|
35
35
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
36
36
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
@@ -64,7 +64,7 @@ Provides-Extra: polars
|
|
|
64
64
|
|
|
65
65
|
Package ``apache-airflow-providers-common-sql``
|
|
66
66
|
|
|
67
|
-
Release: ``1.28.
|
|
67
|
+
Release: ``1.28.1``
|
|
68
68
|
|
|
69
69
|
|
|
70
70
|
`Common SQL Provider <https://en.wikipedia.org/wiki/SQL>`__
|
|
@@ -77,7 +77,7 @@ This is a provider package for ``common.sql`` provider. All classes for this pro
|
|
|
77
77
|
are in ``airflow.providers.common.sql`` python package.
|
|
78
78
|
|
|
79
79
|
You can find package information and changelog for the provider
|
|
80
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-common-sql/1.28.
|
|
80
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-common-sql/1.28.1/>`_.
|
|
81
81
|
|
|
82
82
|
Installation
|
|
83
83
|
------------
|
|
@@ -119,6 +119,17 @@ Dependent package
|
|
|
119
119
|
`apache-airflow-providers-openlineage <https://airflow.apache.org/docs/apache-airflow-providers-openlineage>`_ ``openlineage``
|
|
120
120
|
============================================================================================================== ===============
|
|
121
121
|
|
|
122
|
+
Optional dependencies
|
|
123
|
+
----------------------
|
|
124
|
+
|
|
125
|
+
=============== ================================================================================================
|
|
126
|
+
Extra Dependencies
|
|
127
|
+
=============== ================================================================================================
|
|
128
|
+
``pandas`` ``pandas[sql-other]>=2.1.2; python_version <"3.13"``, ``pandas>=2.2.3; python_version >="3.13"``
|
|
129
|
+
``openlineage`` ``apache-airflow-providers-openlineage``
|
|
130
|
+
``polars`` ``polars>=1.26.0``
|
|
131
|
+
=============== ================================================================================================
|
|
132
|
+
|
|
122
133
|
The changelog for the provider package can be found in the
|
|
123
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-common-sql/1.28.
|
|
134
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-common-sql/1.28.1/changelog.html>`_.
|
|
124
135
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
airflow/providers/common/sql/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
|
|
2
2
|
airflow/providers/common/sql/README_API.md,sha256=Yug9-DLqoKkG-qT5XMwkyG_T-r17Iqhiipxt5tMZIUw,5906
|
|
3
|
-
airflow/providers/common/sql/__init__.py,sha256=
|
|
3
|
+
airflow/providers/common/sql/__init__.py,sha256=YcNcpx2fEEVuY5zRqrITE-NAIYlJ2MqfZ8SraaYi0mM,1500
|
|
4
4
|
airflow/providers/common/sql/get_provider_info.py,sha256=xCPXLKFA_1ilhGa0aB3E9ggdHtn9Do7Eb469begpZag,2767
|
|
5
5
|
airflow/providers/common/sql/get_provider_info.pyi,sha256=NSIGS74SESn-j0g3xd3BlctUrKlkWaXL605hCs0hjac,1580
|
|
6
6
|
airflow/providers/common/sql/version_compat.py,sha256=WKfSWhm-ZTmqCuSo6UMn9GiEgzfCMGEso4BR52V4A4c,2105
|
|
@@ -18,14 +18,14 @@ airflow/providers/common/sql/hooks/sql.pyi,sha256=5E3BMnzkKpDaxv47WDsTVlGtTp1_5N
|
|
|
18
18
|
airflow/providers/common/sql/operators/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
19
19
|
airflow/providers/common/sql/operators/generic_transfer.py,sha256=8rK29EisThzJlNmbmPT86fdp7jUqIl8VVFHAb2-ca1A,8510
|
|
20
20
|
airflow/providers/common/sql/operators/generic_transfer.pyi,sha256=wHN-8y2rLpGBSoNMce6gQR19CnahLZzoW3qjCDmUvHE,3312
|
|
21
|
-
airflow/providers/common/sql/operators/sql.py,sha256=
|
|
21
|
+
airflow/providers/common/sql/operators/sql.py,sha256=I-ZZeNBOZjtPqwRVU0azYF9ZRiX2AgwRWqaegSIZdgw,55718
|
|
22
22
|
airflow/providers/common/sql/sensors/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
23
23
|
airflow/providers/common/sql/sensors/sql.py,sha256=osPBiu7atWLEe2fH9FTmwm0aXJ12JggcGuwJwjkWOko,5464
|
|
24
24
|
airflow/providers/common/sql/sensors/sql.pyi,sha256=T25x934WUathT0bOULErqx-af8nxkBN-j9eid3cFRSI,2675
|
|
25
25
|
airflow/providers/common/sql/triggers/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
26
26
|
airflow/providers/common/sql/triggers/sql.py,sha256=3xTxMf2oSE8X8IhP22pmlSoEYmJIIFmi8HmsNbiLek0,3690
|
|
27
27
|
airflow/providers/common/sql/triggers/sql.pyi,sha256=TjSM2B3qCv3oN8Y5l_czi9YfxRE2h5Hv_lvUokeiGsE,1968
|
|
28
|
-
apache_airflow_providers_common_sql-1.28.
|
|
29
|
-
apache_airflow_providers_common_sql-1.28.
|
|
30
|
-
apache_airflow_providers_common_sql-1.28.
|
|
31
|
-
apache_airflow_providers_common_sql-1.28.
|
|
28
|
+
apache_airflow_providers_common_sql-1.28.1.dist-info/entry_points.txt,sha256=h8UXRp2crPuGmYVYRM5oe168qIh7g-4t2QQbVMizKjI,106
|
|
29
|
+
apache_airflow_providers_common_sql-1.28.1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
30
|
+
apache_airflow_providers_common_sql-1.28.1.dist-info/METADATA,sha256=HBMR_mQbLBU9fQ3eOshXm-w9czSt113R8DAdezxFWYQ,6090
|
|
31
|
+
apache_airflow_providers_common_sql-1.28.1.dist-info/RECORD,,
|
|
File without changes
|