sqlframe 1.1.0__py3-none-any.whl → 1.1.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.
sqlframe/_version.py CHANGED
@@ -12,5 +12,5 @@ __version__: str
12
12
  __version_tuple__: VERSION_TUPLE
13
13
  version_tuple: VERSION_TUPLE
14
14
 
15
- __version__ = version = '1.1.0'
16
- __version_tuple__ = version_tuple = (1, 1, 0)
15
+ __version__ = version = '1.1.2'
16
+ __version_tuple__ = version_tuple = (1, 1, 2)
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 = sqlglot.parse_one(column, dialect=self.session.input_dialect)
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))
@@ -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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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
 
@@ -74,7 +74,10 @@ class DuckDBDataFrameReader(_BaseDataFrameReader["DuckDBSession", "DuckDBDataFra
74
74
  """
75
75
  if schema:
76
76
  column_mapping = ensure_column_mapping(schema)
77
- select_columns = [x.expression for x in self._to_casted_columns(column_mapping)]
77
+ select_column_mapping = column_mapping.copy()
78
+ if options.get("filename"):
79
+ select_column_mapping["filename"] = "VARCHAR"
80
+ select_columns = [x.expression for x in self._to_casted_columns(select_column_mapping)]
78
81
  if format == "csv":
79
82
  duckdb_columns = ", ".join(
80
83
  [f"'{column}': '{dtype}'" for column, dtype in column_mapping.items()]
@@ -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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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 'dataframe' folder.
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.0
3
+ Version: 1.1.2
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 (==4.0.3) ; extra == 'docs'
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=CqDGE4B1ZqZ-56mxeOFcXRTmlxrdOh4ayrjbcPjziE4,411
2
+ sqlframe/_version.py,sha256=nmVMEP2kpLDIzjgS-U1taCdJbVrmv_k8ao6RojGcvRg,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=P55_mLrk9KUC2LRYyLgSzVAan1Lx6EBNfdDjMEtc9DA,37086
6
- sqlframe/base/column.py,sha256=K9TtpBjVsFK9NtEX9ZQscU6qZIKiVVh1zj3jG9HifyA,15110
7
- sqlframe/base/dataframe.py,sha256=lNBMm79rX1DAt5vj4qKuxDwyhJdnhDROcOPcqVDxNHE,58971
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=rm-8Mmz_156G3Hdwfdf-HF4HDeVkv0pBcDCJskoRINQ,53541
12
- sqlframe/base/group.py,sha256=sKoaI2aLMih9nJTQfqzfJ00NbBcGQtArWXYHT40motQ,4060
13
- sqlframe/base/normalize.py,sha256=Ie6IcrD9dL-xBUKgDoh_c_gfLw68tBK5AmiprCA8MXE,3633
14
- sqlframe/base/operations.py,sha256=fVlAse6-WdQnEaHghRZVHXOesQ3OnKQwBnVYv5nVRiI,3457
15
- sqlframe/base/readerwriter.py,sha256=cgg7KuO7Eu8fScKOg1KyNFAcgnsjpU6yusPVs0o52a4,25213
16
- sqlframe/base/session.py,sha256=evVdd-FGKkp-Wg80UG5289iRtBihLFfkqrcXTH64_R8,21926
17
- sqlframe/base/transforms.py,sha256=EKwUpfp83bncEs_MNmI2OO7gV6vA_Rr89ZWmE4eETSw,468
18
- sqlframe/base/types.py,sha256=1CwMW9Q1inYzQcPTyjv1QANtVSHha8ZmBigmopQET98,11925
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=yyKvoNi41vL2t7XK2Ysjp8Q2FNIu3BYv-9EPtp5og6k,4944
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=C3wLlyDYgNqDszTNbojoXdZQuqBYw3FRtOqpHhfaf0E,392
30
- sqlframe/bigquery/readwriter.py,sha256=-r8nGOACWJ51XACONppgKsoMQMwcCgTJ0fp_mXW4JOs,871
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=XDFf-si0_myFBOM8rwlg2G80FdgBXBe7pkzk8xxYcuE,3830
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=sYTExtNprfbW74LWc_Lyjc1G6K1FogQsdILU2599Bq8,384
40
- sqlframe/duckdb/readwriter.py,sha256=TC0LigUmCRpcdx4B8Mb5ap5ifFBrjmbqXmhUB5rG87U,4376
39
+ sqlframe/duckdb/group.py,sha256=IkhbW42Ng1U5YT3FkIdiB4zBqRkW4QyTb-1detY1e_4,383
40
+ sqlframe/duckdb/readwriter.py,sha256=6xiyE3JKzY9ieKqvbAOBlifiHE6NpYISHul3Idlmoa0,4542
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=EjRbgHKSZKYFdKYkicIIpXiezvA0vOhAQxNyspKNxXk,3653
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=XmUndNdoYgy6-84xMMVCdCI06j7Na5QrSFhhqvUKcGw,392
50
- sqlframe/postgres/readwriter.py,sha256=P3gXZkKKc9R92slKph5K0FPJPjsdgMYDRX-8LPsOI5s,871
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=6w7-ykPQ6LbWL77Le74PqfQstW_WTmStAw7BrNtgcu4,4718
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=8iOjDH5CBCtU6NMLrc7qnCkrxynGbBiDU9jjBU2eoY0,392
60
- sqlframe/redshift/readwriter.py,sha256=7sfALF-Wc7FwgOsVqS2zmH2eDZr7-Mo2XcPQPx9gRvQ,871
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=DKigfH4i4VWY2N485YlIDUFUnz-InS0VzibvOD-7Fls,4920
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=d4P_wmCxYyo3jsB0R9294LQ7HfhOAZyoq_l_UzLTqjE,396
70
- sqlframe/snowflake/readwriter.py,sha256=sMTLtfLfLZ8tzJPq1_adjpRCkfcejU-2GyLMbOFpBbY,885
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=ZJeUfyk43L5WxJppQzWPnaV-aqnBmA8hKtfBO9F2ruE,32485
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=U5wpUtPINphprpdCPwLK7lDV6nFwEEVlHnJm9Yk_Xxo,380
80
- sqlframe/spark/readwriter.py,sha256=8NLtkzFN0EEwfIal8hpr6ciJ5yA2rXsNINt3Ac9_pHQ,813
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=PUmFFHyRlv7byHmaQWCcmDYC7ocn8g21IluSaEgb5eA,400
90
- sqlframe/standalone/readwriter.py,sha256=n2uoebNdL_t6_eaXNkpu7Zv2UmZ9I3rASuo01gGvOFs,634
91
- sqlframe/standalone/session.py,sha256=xWxBh-OtH--LmWtpDboOBpwKLcaBK5JV-IF2gCra5k0,1192
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.0.dist-info/LICENSE,sha256=VZu79YgW780qxaFJMr0t5ZgbOYEh04xWoxaWOaqIGWk,1068
95
- sqlframe-1.1.0.dist-info/METADATA,sha256=RBSfrpj8FYCqz79aL88JvpDRIkKZvbASKiwT0YqwXm0,6873
96
- sqlframe-1.1.0.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
97
- sqlframe-1.1.0.dist-info/top_level.txt,sha256=T0_RpoygaZSF6heeWwIDQgaP0varUdSK1pzjeJZRjM8,9
98
- sqlframe-1.1.0.dist-info/RECORD,,
94
+ sqlframe-1.1.2.dist-info/LICENSE,sha256=VZu79YgW780qxaFJMr0t5ZgbOYEh04xWoxaWOaqIGWk,1068
95
+ sqlframe-1.1.2.dist-info/METADATA,sha256=kNTJ563YlFHoG62V-SpxeE11HCXBx7zBRbfLlzQLuRA,6873
96
+ sqlframe-1.1.2.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
97
+ sqlframe-1.1.2.dist-info/top_level.txt,sha256=T0_RpoygaZSF6heeWwIDQgaP0varUdSK1pzjeJZRjM8,9
98
+ sqlframe-1.1.2.dist-info/RECORD,,