sqlframe 1.1.0__py3-none-any.whl → 1.1.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.
- sqlframe/_version.py +2 -2
- sqlframe/base/catalog.py +1 -1
- sqlframe/base/column.py +1 -1
- sqlframe/base/dataframe.py +4 -2
- sqlframe/base/functions.py +1 -1
- sqlframe/base/group.py +1 -1
- sqlframe/base/normalize.py +1 -1
- sqlframe/base/operations.py +1 -1
- sqlframe/base/readerwriter.py +1 -1
- sqlframe/base/session.py +1 -1
- sqlframe/base/transforms.py +1 -1
- sqlframe/base/types.py +1 -1
- sqlframe/base/window.py +1 -1
- sqlframe/bigquery/group.py +1 -1
- sqlframe/bigquery/readwriter.py +1 -1
- sqlframe/duckdb/catalog.py +1 -1
- sqlframe/duckdb/group.py +1 -1
- sqlframe/duckdb/readwriter.py +1 -1
- sqlframe/postgres/catalog.py +1 -1
- sqlframe/postgres/group.py +1 -1
- sqlframe/postgres/readwriter.py +1 -1
- sqlframe/redshift/catalog.py +1 -1
- sqlframe/redshift/group.py +1 -1
- sqlframe/redshift/readwriter.py +1 -1
- sqlframe/snowflake/catalog.py +1 -1
- sqlframe/snowflake/group.py +1 -1
- sqlframe/snowflake/readwriter.py +1 -1
- sqlframe/spark/catalog.py +1 -1
- sqlframe/spark/group.py +1 -1
- sqlframe/spark/readwriter.py +1 -1
- sqlframe/standalone/group.py +1 -1
- sqlframe/standalone/readwriter.py +1 -1
- sqlframe/standalone/session.py +1 -1
- {sqlframe-1.1.0.dist-info → sqlframe-1.1.1.dist-info}/METADATA +2 -2
- {sqlframe-1.1.0.dist-info → sqlframe-1.1.1.dist-info}/RECORD +38 -38
- {sqlframe-1.1.0.dist-info → sqlframe-1.1.1.dist-info}/LICENSE +0 -0
- {sqlframe-1.1.0.dist-info → sqlframe-1.1.1.dist-info}/WHEEL +0 -0
- {sqlframe-1.1.0.dist-info → sqlframe-1.1.1.dist-info}/top_level.txt +0 -0
sqlframe/_version.py
CHANGED
sqlframe/base/catalog.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/base/column.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/base/dataframe.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
@@ -608,7 +608,9 @@ class _BaseDataFrame(t.Generic[SESSION, WRITER, NA, STAT, GROUP_DATA]):
|
|
|
608
608
|
@operation(Operation.WHERE)
|
|
609
609
|
def where(self, column: t.Union[Column, str, bool], **kwargs) -> Self:
|
|
610
610
|
if isinstance(column, str):
|
|
611
|
-
col =
|
|
611
|
+
col = self._ensure_and_normalize_col(
|
|
612
|
+
sqlglot.parse_one(column, dialect=self.session.input_dialect)
|
|
613
|
+
)
|
|
612
614
|
else:
|
|
613
615
|
col = self._ensure_and_normalize_col(column)
|
|
614
616
|
return self.copy(expression=self.expression.where(col.expression))
|
sqlframe/base/functions.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/base/group.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/base/normalize.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/base/operations.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/base/readerwriter.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/base/session.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/base/transforms.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
import typing as t
|
|
4
4
|
|
sqlframe/base/types.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/base/window.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/bigquery/group.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/bigquery/readwriter.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/duckdb/catalog.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/duckdb/group.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/duckdb/readwriter.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/postgres/catalog.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/postgres/group.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/postgres/readwriter.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/redshift/catalog.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/redshift/group.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/redshift/readwriter.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/snowflake/catalog.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/snowflake/group.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/snowflake/readwriter.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/spark/catalog.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/spark/group.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/spark/readwriter.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/standalone/group.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
sqlframe/standalone/session.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the '
|
|
1
|
+
# This code is based on code from Apache Spark under the license found in the LICENSE file located in the 'sqlframe' folder.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: sqlframe
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.1
|
|
4
4
|
Summary: Taking the Spark out of PySpark by converting to SQL
|
|
5
5
|
Home-page: https://github.com/eakmanrq/sqlframe
|
|
6
6
|
Author: Ryan Eakman
|
|
@@ -40,7 +40,7 @@ Requires-Dist: typing-extensions (<5,>=4.11) ; extra == 'dev'
|
|
|
40
40
|
Requires-Dist: pre-commit (>=3.5) ; (python_version == "3.8") and extra == 'dev'
|
|
41
41
|
Requires-Dist: pre-commit (<3.8,>=3.7) ; (python_version >= "3.9") and extra == 'dev'
|
|
42
42
|
Provides-Extra: docs
|
|
43
|
-
Requires-Dist: mkdocs-include-markdown-plugin (==
|
|
43
|
+
Requires-Dist: mkdocs-include-markdown-plugin (==6.0.6) ; extra == 'docs'
|
|
44
44
|
Requires-Dist: mkdocs-material-extensions (==1.1.1) ; extra == 'docs'
|
|
45
45
|
Requires-Dist: mkdocs-material (==9.0.5) ; extra == 'docs'
|
|
46
46
|
Requires-Dist: mkdocs (==1.4.2) ; extra == 'docs'
|
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
sqlframe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
sqlframe/_version.py,sha256=
|
|
2
|
+
sqlframe/_version.py,sha256=EPoWF0em1tKJgBz5dbBF-r29860VBk-SsdiXh6E1aO0,411
|
|
3
3
|
sqlframe/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
sqlframe/base/_typing.py,sha256=DuTay8-o9W-pw3RPZCgLunKNJLS9PkaV11G_pxXp9NY,1256
|
|
5
|
-
sqlframe/base/catalog.py,sha256=
|
|
6
|
-
sqlframe/base/column.py,sha256=
|
|
7
|
-
sqlframe/base/dataframe.py,sha256=
|
|
5
|
+
sqlframe/base/catalog.py,sha256=jbEuY1wje4oPRuFSMgKdX-yTohBL99S57QuHhUXCybI,37085
|
|
6
|
+
sqlframe/base/column.py,sha256=1xFwPhBlzdO6ZL9tTpPESL7B3XQ3rFMPIoBekFm0TqM,15109
|
|
7
|
+
sqlframe/base/dataframe.py,sha256=4z1xcHOi8LPeyh4Ev40V6UZ2Wqb53WmUfQAxooPjxgQ,59032
|
|
8
8
|
sqlframe/base/decorators.py,sha256=fnqT1Hqa0J_gUurDcVY1Dcscj6SXFxFJ5PKAw-xe5sU,2097
|
|
9
9
|
sqlframe/base/exceptions.py,sha256=pCB9hXX4jxZWzNg3JN1i38cv3BmpUlee5NoLYx3YXIQ,208
|
|
10
10
|
sqlframe/base/function_alternatives.py,sha256=to0kv3MTJmQFeVTMcitz0AxBIoUJC3cu5LkEY5aJpoo,31318
|
|
11
|
-
sqlframe/base/functions.py,sha256=
|
|
12
|
-
sqlframe/base/group.py,sha256=
|
|
13
|
-
sqlframe/base/normalize.py,sha256=
|
|
14
|
-
sqlframe/base/operations.py,sha256
|
|
15
|
-
sqlframe/base/readerwriter.py,sha256=
|
|
16
|
-
sqlframe/base/session.py,sha256=
|
|
17
|
-
sqlframe/base/transforms.py,sha256=
|
|
18
|
-
sqlframe/base/types.py,sha256=
|
|
11
|
+
sqlframe/base/functions.py,sha256=iVe8AbXGX_gXnkQ1N-clX6rihsonfzJ84_YvWzhB2FM,53540
|
|
12
|
+
sqlframe/base/group.py,sha256=TES9CleVmH3x-0X-tqmuUKfCKSWjH5vg1aU3R6dDmFc,4059
|
|
13
|
+
sqlframe/base/normalize.py,sha256=H7Cj2f7snMxuF_fGnvzl0P_ejT6ZJuASxWory08TiQc,3632
|
|
14
|
+
sqlframe/base/operations.py,sha256=-AhNuEzcV7ZExoP1oY3blaKip-joQyJeQVvfBTs_2g4,3456
|
|
15
|
+
sqlframe/base/readerwriter.py,sha256=kyPdmOmi75lHsEAkmHOq9wsLj2cGWf0oHwngwkZYx8k,25212
|
|
16
|
+
sqlframe/base/session.py,sha256=s-jnViqdO6E4t8KiHIiUIBa1mxQlhlSb0dBPUl42nbI,21925
|
|
17
|
+
sqlframe/base/transforms.py,sha256=y0j3SGDz3XCmNGrvassk1S-owllUWfkHyMgZlY6SFO4,467
|
|
18
|
+
sqlframe/base/types.py,sha256=aJT5YXr-M_LAfUM0uK4asfbrQFab_xmsp1CP2zkG8p0,11924
|
|
19
19
|
sqlframe/base/util.py,sha256=SeUC2pcSBGnsS1W5PL1p-IGC6bJG8_2a7En2hxSTmpA,7597
|
|
20
|
-
sqlframe/base/window.py,sha256=
|
|
20
|
+
sqlframe/base/window.py,sha256=8hOv-ignPPIsZA9FzvYzcLE9J_glalVaYjIAUdRUX3o,4943
|
|
21
21
|
sqlframe/base/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
22
|
sqlframe/base/mixins/catalog_mixins.py,sha256=ZNzNn-cWB0RwT7L1KZCWYke2JlP-cZze0MDNOzSfHew,14093
|
|
23
23
|
sqlframe/base/mixins/readwriter_mixins.py,sha256=N2nsXOG3A2j6O3N195U-_fYOZMkqfifGcfduxODUcxs,4656
|
|
@@ -26,58 +26,58 @@ sqlframe/bigquery/catalog.py,sha256=HdRXZfZczoyLHEQ0y30nfCFKBvTTOJ1s6t0mafN_bGk,
|
|
|
26
26
|
sqlframe/bigquery/column.py,sha256=E1tUa62Y5HajkhgFuebU9zohrGyieudcHzTT8gfalio,40
|
|
27
27
|
sqlframe/bigquery/dataframe.py,sha256=fPQ6043aSS_ds30WsvrYOgNZJPH0jq7BeNHGLQ2MEW4,1372
|
|
28
28
|
sqlframe/bigquery/functions.py,sha256=RF8yG_4MS3at_60V0NNTE5ADERJZa7kZGYFWI4ST3jM,11149
|
|
29
|
-
sqlframe/bigquery/group.py,sha256=
|
|
30
|
-
sqlframe/bigquery/readwriter.py,sha256
|
|
29
|
+
sqlframe/bigquery/group.py,sha256=UVBNBRTo8OqS-_cS5YwvTeJYgYxeG-d6R3kfyHmlFqw,391
|
|
30
|
+
sqlframe/bigquery/readwriter.py,sha256=WAD3ZMwkkjOpvPPoZXfaLLNM6tRTeUvdEj-hQZAzXeo,870
|
|
31
31
|
sqlframe/bigquery/session.py,sha256=1-hE1Wr2b6SqfD4M_-OGMqjaSbhD6wSQd74v71xHZv8,2709
|
|
32
32
|
sqlframe/bigquery/types.py,sha256=KwNyuXIo-2xVVd4bZED3YrQOobKCtemlxGrJL7DrTC8,34
|
|
33
33
|
sqlframe/bigquery/window.py,sha256=6GKPzuxeSapJakBaKBeT9VpED1ACdjggDv9JRILDyV0,35
|
|
34
34
|
sqlframe/duckdb/__init__.py,sha256=t85TA3ufZtL1weQNFmEs8itCSwbJFtw03-p0GT4XGf8,669
|
|
35
|
-
sqlframe/duckdb/catalog.py,sha256=
|
|
35
|
+
sqlframe/duckdb/catalog.py,sha256=SR1JWPGKjNJ2Dq2au-4rZAadPYr8Zn4WsK5EYKRyFm4,3829
|
|
36
36
|
sqlframe/duckdb/column.py,sha256=wkEPcp3xVsH5nC3kpacXqNkRv9htPtBgt-0uFRxIRNs,56
|
|
37
37
|
sqlframe/duckdb/dataframe.py,sha256=9T6GV4JScaApFSA4T7fixot78HMUgkjGxU7TgjolOOM,1410
|
|
38
38
|
sqlframe/duckdb/functions.py,sha256=srvzbk_Wg-wQPFGYp624dRDyYJghi47M8E-Tu7pBdY0,1507
|
|
39
|
-
sqlframe/duckdb/group.py,sha256=
|
|
40
|
-
sqlframe/duckdb/readwriter.py,sha256=
|
|
39
|
+
sqlframe/duckdb/group.py,sha256=IkhbW42Ng1U5YT3FkIdiB4zBqRkW4QyTb-1detY1e_4,383
|
|
40
|
+
sqlframe/duckdb/readwriter.py,sha256=qhqXvSsRQ6k-FY_1dSRtHpqbxRNVv8sr3iZp_SooBqs,4375
|
|
41
41
|
sqlframe/duckdb/session.py,sha256=TCAVsSqBGGj1Otb2iIkSkWqjbzzg1MeDAafGN928-O8,1893
|
|
42
42
|
sqlframe/duckdb/types.py,sha256=KwNyuXIo-2xVVd4bZED3YrQOobKCtemlxGrJL7DrTC8,34
|
|
43
43
|
sqlframe/duckdb/window.py,sha256=6GKPzuxeSapJakBaKBeT9VpED1ACdjggDv9JRILDyV0,35
|
|
44
44
|
sqlframe/postgres/__init__.py,sha256=Sz_MtgV_oh_QhfZTC7iKM07ICUmNcJEDV0kEkSW9ZKU,712
|
|
45
|
-
sqlframe/postgres/catalog.py,sha256=
|
|
45
|
+
sqlframe/postgres/catalog.py,sha256=4f4Ytacfn0Q3xnT0MWUeEYPq4SwNPdS1EmRc2fBK9yc,3652
|
|
46
46
|
sqlframe/postgres/column.py,sha256=E1tUa62Y5HajkhgFuebU9zohrGyieudcHzTT8gfalio,40
|
|
47
47
|
sqlframe/postgres/dataframe.py,sha256=bv_y9D9w03x-sfLdippb8n4goFQGazg1j0gZEPHe98k,1372
|
|
48
48
|
sqlframe/postgres/functions.py,sha256=UNL7dE6LmzekvolwqWB-aFt8ITamxeSfuG50_NP_G8c,2133
|
|
49
|
-
sqlframe/postgres/group.py,sha256=
|
|
50
|
-
sqlframe/postgres/readwriter.py,sha256=
|
|
49
|
+
sqlframe/postgres/group.py,sha256=KUXeSFKWTSH9yCRJAhW85OvjZaG6Zr4In9LR_ie3yGU,391
|
|
50
|
+
sqlframe/postgres/readwriter.py,sha256=L1e3yKXzFVNR_W5s1DHaWol7G8x7l4jcZ5sLGualyMk,870
|
|
51
51
|
sqlframe/postgres/session.py,sha256=oKh8-j9MN6msVheQNCYoGmej9ktFLTTHmlMP58uZ3nw,1936
|
|
52
52
|
sqlframe/postgres/types.py,sha256=KwNyuXIo-2xVVd4bZED3YrQOobKCtemlxGrJL7DrTC8,34
|
|
53
53
|
sqlframe/postgres/window.py,sha256=6GKPzuxeSapJakBaKBeT9VpED1ACdjggDv9JRILDyV0,35
|
|
54
54
|
sqlframe/redshift/__init__.py,sha256=jamKYQtQaKjjXnQ01QGPHvatbrZSw9sWno_VOUGSz6I,712
|
|
55
|
-
sqlframe/redshift/catalog.py,sha256=
|
|
55
|
+
sqlframe/redshift/catalog.py,sha256=JBDWIu4FQhi4_POB9pxW0T5A-6qdSK7BCq_Cp-V6tIM,4717
|
|
56
56
|
sqlframe/redshift/column.py,sha256=E1tUa62Y5HajkhgFuebU9zohrGyieudcHzTT8gfalio,40
|
|
57
57
|
sqlframe/redshift/dataframe.py,sha256=mtxmKVnvuYNQnirEvuXICY53WRiN8L1QCtSsvPJ-4jE,1372
|
|
58
58
|
sqlframe/redshift/functions.py,sha256=DR5kodYAcKatUqopwrEQtxryI4ZSqaH47_y3WLht4Wg,455
|
|
59
|
-
sqlframe/redshift/group.py,sha256=
|
|
60
|
-
sqlframe/redshift/readwriter.py,sha256=
|
|
59
|
+
sqlframe/redshift/group.py,sha256=5MGZYJfHpzoRSQ0N_pn4KUk4Mk2gocQwU3K1-jAbvGg,391
|
|
60
|
+
sqlframe/redshift/readwriter.py,sha256=g3FYKSsJKqcSnElprzzz29ZctoXq9tRB0Mj9Bm1HycI,870
|
|
61
61
|
sqlframe/redshift/session.py,sha256=GA2CFGJckissPYmcXWR1R3QOOoSa9XuLOR6sWFFuC1k,1494
|
|
62
62
|
sqlframe/redshift/types.py,sha256=KwNyuXIo-2xVVd4bZED3YrQOobKCtemlxGrJL7DrTC8,34
|
|
63
63
|
sqlframe/redshift/window.py,sha256=6GKPzuxeSapJakBaKBeT9VpED1ACdjggDv9JRILDyV0,35
|
|
64
64
|
sqlframe/snowflake/__init__.py,sha256=nuQ3cuHjDpW4ELZfbd2qOYmtXmcYl7MtsrdOrRdozo0,746
|
|
65
|
-
sqlframe/snowflake/catalog.py,sha256=
|
|
65
|
+
sqlframe/snowflake/catalog.py,sha256=1Mu6pgYF3CIJwhgrHpYE_mMbg8Mg5m5N-rrglQHMWP0,4919
|
|
66
66
|
sqlframe/snowflake/column.py,sha256=E1tUa62Y5HajkhgFuebU9zohrGyieudcHzTT8gfalio,40
|
|
67
67
|
sqlframe/snowflake/dataframe.py,sha256=OJ27NudBUE3XX9mc8ywooGhYV4ijF9nX2K_nkHRcTx4,1393
|
|
68
68
|
sqlframe/snowflake/functions.py,sha256=ZYX9gyPvmpKoLi_7uQdB0uPQNTREOAJD0aCcccX1iPc,456
|
|
69
|
-
sqlframe/snowflake/group.py,sha256=
|
|
70
|
-
sqlframe/snowflake/readwriter.py,sha256=
|
|
69
|
+
sqlframe/snowflake/group.py,sha256=pPP1l2RRo_LgkXrji8a87n2PKo-63ZRPT-WUtvVcBME,395
|
|
70
|
+
sqlframe/snowflake/readwriter.py,sha256=yhRc2HcMq6PwV3ghZWC-q-qaE7LE4aEjZEXCip4OOlQ,884
|
|
71
71
|
sqlframe/snowflake/session.py,sha256=oJK_3t43TeUiAj7KBfn2lD5d6AVHWsI39xLu-j_h5QM,1502
|
|
72
72
|
sqlframe/snowflake/types.py,sha256=KwNyuXIo-2xVVd4bZED3YrQOobKCtemlxGrJL7DrTC8,34
|
|
73
73
|
sqlframe/snowflake/window.py,sha256=6GKPzuxeSapJakBaKBeT9VpED1ACdjggDv9JRILDyV0,35
|
|
74
74
|
sqlframe/spark/__init__.py,sha256=jamKYQtQaKjjXnQ01QGPHvatbrZSw9sWno_VOUGSz6I,712
|
|
75
|
-
sqlframe/spark/catalog.py,sha256=
|
|
75
|
+
sqlframe/spark/catalog.py,sha256=nqiZf14m2-PPbZALLlSgvLnpLqSskNnAiZz_ccI-nPs,32484
|
|
76
76
|
sqlframe/spark/column.py,sha256=E1tUa62Y5HajkhgFuebU9zohrGyieudcHzTT8gfalio,40
|
|
77
77
|
sqlframe/spark/dataframe.py,sha256=V3z5Bx9snLgYh4bDwJfJb5mj1P7UsZF8DMlLwZXopBg,1309
|
|
78
78
|
sqlframe/spark/functions.py,sha256=eSGMM2DXcj17nIPH5ZDLG95ZMuE7F8Qvn0IqGO_wQVw,586
|
|
79
|
-
sqlframe/spark/group.py,sha256=
|
|
80
|
-
sqlframe/spark/readwriter.py,sha256=
|
|
79
|
+
sqlframe/spark/group.py,sha256=MrvV_v-YkBc6T1zz882WrEqtWjlooWIyHBCmTQg3fCA,379
|
|
80
|
+
sqlframe/spark/readwriter.py,sha256=w68EImTcGJv64X7pc1tk5tDjDxb1nAnn-MiIaaN9Dc8,812
|
|
81
81
|
sqlframe/spark/session.py,sha256=EJWp4OEM0maGwuOF3YtHat-zXWVUeNlDa23tIoY1KbI,2603
|
|
82
82
|
sqlframe/spark/types.py,sha256=KwNyuXIo-2xVVd4bZED3YrQOobKCtemlxGrJL7DrTC8,34
|
|
83
83
|
sqlframe/spark/window.py,sha256=6GKPzuxeSapJakBaKBeT9VpED1ACdjggDv9JRILDyV0,35
|
|
@@ -86,13 +86,13 @@ sqlframe/standalone/catalog.py,sha256=oJAPxrXtra_YP_JBZCJY2qsr0TRhWG7FFSq0RHDszc
|
|
|
86
86
|
sqlframe/standalone/column.py,sha256=E1tUa62Y5HajkhgFuebU9zohrGyieudcHzTT8gfalio,40
|
|
87
87
|
sqlframe/standalone/dataframe.py,sha256=o6weWJvDX1w351p_14PQ52qopbPozVG9OFmhaqVvivU,967
|
|
88
88
|
sqlframe/standalone/functions.py,sha256=NW-k7NP_Y9DzQq6fjX5-CL8oOUGAiaMo4SBuDd8-JUA,38
|
|
89
|
-
sqlframe/standalone/group.py,sha256=
|
|
90
|
-
sqlframe/standalone/readwriter.py,sha256=
|
|
91
|
-
sqlframe/standalone/session.py,sha256=
|
|
89
|
+
sqlframe/standalone/group.py,sha256=oGEbAQMSm6AlkwnBxNI8r9enZWRwsRxc8zpzoz3rArk,399
|
|
90
|
+
sqlframe/standalone/readwriter.py,sha256=EZNyDJ4ID6sGNog3uP4-e9RvchX4biJJDNtc5hkKkrY,633
|
|
91
|
+
sqlframe/standalone/session.py,sha256=wQmdu2sv6KMTAv0LRFk7TY7yzlh3xvmsyqilEtRecbY,1191
|
|
92
92
|
sqlframe/standalone/types.py,sha256=KwNyuXIo-2xVVd4bZED3YrQOobKCtemlxGrJL7DrTC8,34
|
|
93
93
|
sqlframe/standalone/window.py,sha256=6GKPzuxeSapJakBaKBeT9VpED1ACdjggDv9JRILDyV0,35
|
|
94
|
-
sqlframe-1.1.
|
|
95
|
-
sqlframe-1.1.
|
|
96
|
-
sqlframe-1.1.
|
|
97
|
-
sqlframe-1.1.
|
|
98
|
-
sqlframe-1.1.
|
|
94
|
+
sqlframe-1.1.1.dist-info/LICENSE,sha256=VZu79YgW780qxaFJMr0t5ZgbOYEh04xWoxaWOaqIGWk,1068
|
|
95
|
+
sqlframe-1.1.1.dist-info/METADATA,sha256=LTC6gpDM1_pX9rAzlQSuH2owbzFd93NoKZ3o-xpFDcE,6873
|
|
96
|
+
sqlframe-1.1.1.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
97
|
+
sqlframe-1.1.1.dist-info/top_level.txt,sha256=T0_RpoygaZSF6heeWwIDQgaP0varUdSK1pzjeJZRjM8,9
|
|
98
|
+
sqlframe-1.1.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|