duckdb 1.4.1.dev113__cp310-cp310-win_amd64.whl → 1.5.0.dev32__cp310-cp310-win_amd64.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 duckdb might be problematic. Click here for more details.

Files changed (45) hide show
  1. _duckdb.cp310-win_amd64.pyd +0 -0
  2. duckdb/__init__.py +374 -373
  3. duckdb/__init__.pyi +180 -604
  4. duckdb/bytes_io_wrapper.py +7 -6
  5. duckdb/experimental/__init__.py +1 -2
  6. duckdb/experimental/spark/__init__.py +4 -3
  7. duckdb/experimental/spark/_globals.py +8 -8
  8. duckdb/experimental/spark/_typing.py +9 -7
  9. duckdb/experimental/spark/conf.py +15 -16
  10. duckdb/experimental/spark/context.py +44 -60
  11. duckdb/experimental/spark/errors/__init__.py +35 -33
  12. duckdb/experimental/spark/errors/error_classes.py +1 -1
  13. duckdb/experimental/spark/errors/exceptions/__init__.py +1 -1
  14. duckdb/experimental/spark/errors/exceptions/base.py +88 -39
  15. duckdb/experimental/spark/errors/utils.py +16 -11
  16. duckdb/experimental/spark/exception.py +6 -9
  17. duckdb/experimental/spark/sql/__init__.py +5 -5
  18. duckdb/experimental/spark/sql/_typing.py +15 -8
  19. duckdb/experimental/spark/sql/catalog.py +20 -21
  20. duckdb/experimental/spark/sql/column.py +54 -47
  21. duckdb/experimental/spark/sql/conf.py +8 -9
  22. duckdb/experimental/spark/sql/dataframe.py +233 -185
  23. duckdb/experimental/spark/sql/functions.py +1248 -1222
  24. duckdb/experimental/spark/sql/group.py +52 -56
  25. duckdb/experimental/spark/sql/readwriter.py +94 -80
  26. duckdb/experimental/spark/sql/session.py +59 -64
  27. duckdb/experimental/spark/sql/streaming.py +10 -9
  28. duckdb/experimental/spark/sql/type_utils.py +64 -66
  29. duckdb/experimental/spark/sql/types.py +344 -308
  30. duckdb/experimental/spark/sql/udf.py +6 -6
  31. duckdb/filesystem.py +8 -13
  32. duckdb/functional/__init__.py +16 -2
  33. duckdb/polars_io.py +57 -66
  34. duckdb/query_graph/__main__.py +96 -91
  35. duckdb/typing/__init__.py +8 -8
  36. duckdb/typing/__init__.pyi +2 -4
  37. duckdb/udf.py +5 -10
  38. duckdb/value/__init__.py +0 -1
  39. duckdb/value/constant/__init__.py +59 -61
  40. duckdb/value/constant/__init__.pyi +4 -3
  41. {duckdb-1.4.1.dev113.dist-info → duckdb-1.5.0.dev32.dist-info}/METADATA +18 -18
  42. duckdb-1.5.0.dev32.dist-info/RECORD +47 -0
  43. duckdb-1.4.1.dev113.dist-info/RECORD +0 -47
  44. {duckdb-1.4.1.dev113.dist-info → duckdb-1.5.0.dev32.dist-info}/WHEEL +0 -0
  45. {duckdb-1.4.1.dev113.dist-info → duckdb-1.5.0.dev32.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,5 @@
1
- # ruff: noqa: D101, D104, D105, D107, ANN401
2
- from typing import Any
3
-
1
+ from typing import Any, Dict
2
+ from duckdb.typing import DuckDBPyType
4
3
  from duckdb.typing import (
5
4
  BIGINT,
6
5
  BIT,
@@ -10,31 +9,30 @@ from duckdb.typing import (
10
9
  DOUBLE,
11
10
  FLOAT,
12
11
  HUGEINT,
12
+ UHUGEINT,
13
13
  INTEGER,
14
14
  INTERVAL,
15
15
  SMALLINT,
16
16
  SQLNULL,
17
17
  TIME,
18
- TIME_TZ,
19
18
  TIMESTAMP,
20
19
  TIMESTAMP_MS,
21
20
  TIMESTAMP_NS,
22
21
  TIMESTAMP_S,
23
22
  TIMESTAMP_TZ,
23
+ TIME_TZ,
24
24
  TINYINT,
25
25
  UBIGINT,
26
- UHUGEINT,
27
26
  UINTEGER,
28
27
  USMALLINT,
29
28
  UTINYINT,
30
29
  UUID,
31
30
  VARCHAR,
32
- DuckDBPyType,
33
31
  )
34
32
 
35
33
 
36
34
  class Value:
37
- def __init__(self, object: Any, type: DuckDBPyType) -> None:
35
+ def __init__(self, object: Any, type: DuckDBPyType):
38
36
  self.object = object
39
37
  self.type = type
40
38
 
@@ -46,12 +44,12 @@ class Value:
46
44
 
47
45
 
48
46
  class NullValue(Value):
49
- def __init__(self) -> None:
47
+ def __init__(self):
50
48
  super().__init__(None, SQLNULL)
51
49
 
52
50
 
53
51
  class BooleanValue(Value):
54
- def __init__(self, object: Any) -> None:
52
+ def __init__(self, object: Any):
55
53
  super().__init__(object, BOOLEAN)
56
54
 
57
55
 
@@ -59,22 +57,22 @@ class BooleanValue(Value):
59
57
 
60
58
 
61
59
  class UnsignedBinaryValue(Value):
62
- def __init__(self, object: Any) -> None:
60
+ def __init__(self, object: Any):
63
61
  super().__init__(object, UTINYINT)
64
62
 
65
63
 
66
64
  class UnsignedShortValue(Value):
67
- def __init__(self, object: Any) -> None:
65
+ def __init__(self, object: Any):
68
66
  super().__init__(object, USMALLINT)
69
67
 
70
68
 
71
69
  class UnsignedIntegerValue(Value):
72
- def __init__(self, object: Any) -> None:
70
+ def __init__(self, object: Any):
73
71
  super().__init__(object, UINTEGER)
74
72
 
75
73
 
76
74
  class UnsignedLongValue(Value):
77
- def __init__(self, object: Any) -> None:
75
+ def __init__(self, object: Any):
78
76
  super().__init__(object, UBIGINT)
79
77
 
80
78
 
@@ -82,32 +80,32 @@ class UnsignedLongValue(Value):
82
80
 
83
81
 
84
82
  class BinaryValue(Value):
85
- def __init__(self, object: Any) -> None:
83
+ def __init__(self, object: Any):
86
84
  super().__init__(object, TINYINT)
87
85
 
88
86
 
89
87
  class ShortValue(Value):
90
- def __init__(self, object: Any) -> None:
88
+ def __init__(self, object: Any):
91
89
  super().__init__(object, SMALLINT)
92
90
 
93
91
 
94
92
  class IntegerValue(Value):
95
- def __init__(self, object: Any) -> None:
93
+ def __init__(self, object: Any):
96
94
  super().__init__(object, INTEGER)
97
95
 
98
96
 
99
97
  class LongValue(Value):
100
- def __init__(self, object: Any) -> None:
98
+ def __init__(self, object: Any):
101
99
  super().__init__(object, BIGINT)
102
100
 
103
101
 
104
102
  class HugeIntegerValue(Value):
105
- def __init__(self, object: Any) -> None:
103
+ def __init__(self, object: Any):
106
104
  super().__init__(object, HUGEINT)
107
105
 
108
106
 
109
107
  class UnsignedHugeIntegerValue(Value):
110
- def __init__(self, object: Any) -> None:
108
+ def __init__(self, object: Any):
111
109
  super().__init__(object, UHUGEINT)
112
110
 
113
111
 
@@ -115,17 +113,17 @@ class UnsignedHugeIntegerValue(Value):
115
113
 
116
114
 
117
115
  class FloatValue(Value):
118
- def __init__(self, object: Any) -> None:
116
+ def __init__(self, object: Any):
119
117
  super().__init__(object, FLOAT)
120
118
 
121
119
 
122
120
  class DoubleValue(Value):
123
- def __init__(self, object: Any) -> None:
121
+ def __init__(self, object: Any):
124
122
  super().__init__(object, DOUBLE)
125
123
 
126
124
 
127
125
  class DecimalValue(Value):
128
- def __init__(self, object: Any, width: int, scale: int) -> None:
126
+ def __init__(self, object: Any, width: int, scale: int):
129
127
  import duckdb
130
128
 
131
129
  decimal_type = duckdb.decimal_type(width, scale)
@@ -136,22 +134,22 @@ class DecimalValue(Value):
136
134
 
137
135
 
138
136
  class StringValue(Value):
139
- def __init__(self, object: Any) -> None:
137
+ def __init__(self, object: Any):
140
138
  super().__init__(object, VARCHAR)
141
139
 
142
140
 
143
141
  class UUIDValue(Value):
144
- def __init__(self, object: Any) -> None:
142
+ def __init__(self, object: Any):
145
143
  super().__init__(object, UUID)
146
144
 
147
145
 
148
146
  class BitValue(Value):
149
- def __init__(self, object: Any) -> None:
147
+ def __init__(self, object: Any):
150
148
  super().__init__(object, BIT)
151
149
 
152
150
 
153
151
  class BlobValue(Value):
154
- def __init__(self, object: Any) -> None:
152
+ def __init__(self, object: Any):
155
153
  super().__init__(object, BLOB)
156
154
 
157
155
 
@@ -159,52 +157,52 @@ class BlobValue(Value):
159
157
 
160
158
 
161
159
  class DateValue(Value):
162
- def __init__(self, object: Any) -> None:
160
+ def __init__(self, object: Any):
163
161
  super().__init__(object, DATE)
164
162
 
165
163
 
166
164
  class IntervalValue(Value):
167
- def __init__(self, object: Any) -> None:
165
+ def __init__(self, object: Any):
168
166
  super().__init__(object, INTERVAL)
169
167
 
170
168
 
171
169
  class TimestampValue(Value):
172
- def __init__(self, object: Any) -> None:
170
+ def __init__(self, object: Any):
173
171
  super().__init__(object, TIMESTAMP)
174
172
 
175
173
 
176
174
  class TimestampSecondValue(Value):
177
- def __init__(self, object: Any) -> None:
175
+ def __init__(self, object: Any):
178
176
  super().__init__(object, TIMESTAMP_S)
179
177
 
180
178
 
181
179
  class TimestampMilisecondValue(Value):
182
- def __init__(self, object: Any) -> None:
180
+ def __init__(self, object: Any):
183
181
  super().__init__(object, TIMESTAMP_MS)
184
182
 
185
183
 
186
184
  class TimestampNanosecondValue(Value):
187
- def __init__(self, object: Any) -> None:
185
+ def __init__(self, object: Any):
188
186
  super().__init__(object, TIMESTAMP_NS)
189
187
 
190
188
 
191
189
  class TimestampTimeZoneValue(Value):
192
- def __init__(self, object: Any) -> None:
190
+ def __init__(self, object: Any):
193
191
  super().__init__(object, TIMESTAMP_TZ)
194
192
 
195
193
 
196
194
  class TimeValue(Value):
197
- def __init__(self, object: Any) -> None:
195
+ def __init__(self, object: Any):
198
196
  super().__init__(object, TIME)
199
197
 
200
198
 
201
199
  class TimeTimeZoneValue(Value):
202
- def __init__(self, object: Any) -> None:
200
+ def __init__(self, object: Any):
203
201
  super().__init__(object, TIME_TZ)
204
202
 
205
203
 
206
204
  class ListValue(Value):
207
- def __init__(self, object: Any, child_type: DuckDBPyType) -> None:
205
+ def __init__(self, object: Any, child_type: DuckDBPyType):
208
206
  import duckdb
209
207
 
210
208
  list_type = duckdb.list_type(child_type)
@@ -212,7 +210,7 @@ class ListValue(Value):
212
210
 
213
211
 
214
212
  class StructValue(Value):
215
- def __init__(self, object: Any, children: dict[str, DuckDBPyType]) -> None:
213
+ def __init__(self, object: Any, children: Dict[str, DuckDBPyType]):
216
214
  import duckdb
217
215
 
218
216
  struct_type = duckdb.struct_type(children)
@@ -220,7 +218,7 @@ class StructValue(Value):
220
218
 
221
219
 
222
220
  class MapValue(Value):
223
- def __init__(self, object: Any, key_type: DuckDBPyType, value_type: DuckDBPyType) -> None:
221
+ def __init__(self, object: Any, key_type: DuckDBPyType, value_type: DuckDBPyType):
224
222
  import duckdb
225
223
 
226
224
  map_type = duckdb.map_type(key_type, value_type)
@@ -228,43 +226,43 @@ class MapValue(Value):
228
226
 
229
227
 
230
228
  class UnionType(Value):
231
- def __init__(self, object: Any, members: dict[str, DuckDBPyType]) -> None:
229
+ def __init__(self, object: Any, members: Dict[str, DuckDBPyType]):
232
230
  import duckdb
233
231
 
234
232
  union_type = duckdb.union_type(members)
235
233
  super().__init__(object, union_type)
236
234
 
237
235
 
238
- # TODO: add EnumValue once `duckdb.enum_type` is added # noqa: TD002, TD003
236
+ # TODO: add EnumValue once `duckdb.enum_type` is added
239
237
 
240
238
  __all__ = [
239
+ "Value",
240
+ "NullValue",
241
+ "BooleanValue",
242
+ "UnsignedBinaryValue",
243
+ "UnsignedShortValue",
244
+ "UnsignedIntegerValue",
245
+ "UnsignedLongValue",
241
246
  "BinaryValue",
247
+ "ShortValue",
248
+ "IntegerValue",
249
+ "LongValue",
250
+ "HugeIntegerValue",
251
+ "UnsignedHugeIntegerValue",
252
+ "FloatValue",
253
+ "DoubleValue",
254
+ "DecimalValue",
255
+ "StringValue",
256
+ "UUIDValue",
242
257
  "BitValue",
243
258
  "BlobValue",
244
- "BooleanValue",
245
259
  "DateValue",
246
- "DecimalValue",
247
- "DoubleValue",
248
- "FloatValue",
249
- "HugeIntegerValue",
250
- "IntegerValue",
251
260
  "IntervalValue",
252
- "LongValue",
253
- "NullValue",
254
- "ShortValue",
255
- "StringValue",
256
- "TimeTimeZoneValue",
257
- "TimeValue",
261
+ "TimestampValue",
262
+ "TimestampSecondValue",
258
263
  "TimestampMilisecondValue",
259
264
  "TimestampNanosecondValue",
260
- "TimestampSecondValue",
261
265
  "TimestampTimeZoneValue",
262
- "TimestampValue",
263
- "UUIDValue",
264
- "UnsignedBinaryValue",
265
- "UnsignedHugeIntegerValue",
266
- "UnsignedIntegerValue",
267
- "UnsignedLongValue",
268
- "UnsignedShortValue",
269
- "Value",
266
+ "TimeValue",
267
+ "TimeTimeZoneValue",
270
268
  ]
@@ -54,9 +54,9 @@ class DoubleValue(Value):
54
54
  def __repr__(self) -> str: ...
55
55
 
56
56
  class DecimalValue(Value):
57
- def __init__(self, object: Any, width: int, scale: int) -> None: ...
58
- def __repr__(self) -> str: ...
59
-
57
+ def __init__(self, object: Any, width: int, scale: int) -> None: ...
58
+ def __repr__(self) -> str: ...
59
+
60
60
  class StringValue(Value):
61
61
  def __init__(self, object: Any) -> None: ...
62
62
  def __repr__(self) -> str: ...
@@ -109,6 +109,7 @@ class TimeTimeZoneValue(Value):
109
109
  def __init__(self, object: Any) -> None: ...
110
110
  def __repr__(self) -> str: ...
111
111
 
112
+
112
113
  class Value:
113
114
  def __init__(self, object: Any, type: DuckDBPyType) -> None: ...
114
115
  def __repr__(self) -> str: ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: duckdb
3
- Version: 1.4.1.dev113
3
+ Version: 1.5.0.dev32
4
4
  Summary: DuckDB in-process database
5
5
  Keywords: DuckDB,Database,SQL,OLAP
6
6
  Author: DuckDB Foundation
@@ -33,9 +33,9 @@ Provides-Extra: all
33
33
  Requires-Dist: ipython; extra == "all"
34
34
  Requires-Dist: fsspec; extra == "all"
35
35
  Requires-Dist: numpy; extra == "all"
36
- Requires-Dist: pandas; extra == "all"
37
- Requires-Dist: pyarrow; extra == "all"
38
- Requires-Dist: adbc_driver_manager; extra == "all"
36
+ Requires-Dist: pandas; python_version < "3.14" and extra == "all"
37
+ Requires-Dist: pyarrow; python_version < "3.14" and extra == "all"
38
+ Requires-Dist: adbc_driver_manager; python_version < "3.14" and extra == "all"
39
39
  Description-Content-Type: text/markdown
40
40
 
41
41
  <div align="center">
@@ -106,22 +106,22 @@ git fetch --all
106
106
 
107
107
  ### Submodule update hook
108
108
 
109
- If you'll be switching between branches that are have the submodule set to different refs, then make your life
110
- easier and add the git hooks in the .githooks directory to your git hooks:
109
+ If you'll be switching between branches that are have the submodule set to different refs, then make your life
110
+ easier and add the git hooks in the .githooks directory to your local config:
111
111
  ```shell
112
- cp .githooks/post-checkout .git/hooks/
112
+ git config --local core.hooksPath .githooks/
113
113
  ```
114
114
 
115
115
 
116
116
  ### Editable installs (general)
117
117
 
118
118
  It's good to be aware of the following when performing an editable install:
119
- - `uv sync` or `uv run [tool]` perform an editable install by default. We have
120
- configured the project so that scikit-build-core will use a persistent build-dir, but since the build itself
121
- happens in an isolated, ephemeral environment, cmake's paths will point to non-existing directories. CMake itself
119
+ - `uv sync` or `uv run [tool]` perform an editable install by default. We have
120
+ configured the project so that scikit-build-core will use a persistent build-dir, but since the build itself
121
+ happens in an isolated, ephemeral environment, cmake's paths will point to non-existing directories. CMake itself
122
122
  will be missing.
123
- - You should install all development dependencies, and then build the project without build isolation, in two separate
124
- steps. After this you can happily keep building and running, as long as you don't forget to pass in the
123
+ - You should install all development dependencies, and then build the project without build isolation, in two separate
124
+ steps. After this you can happily keep building and running, as long as you don't forget to pass in the
125
125
  `--no-build-isolation` flag.
126
126
 
127
127
  ```bash
@@ -133,9 +133,9 @@ uv sync --no-build-isolation
133
133
 
134
134
  ### Editable installs (IDEs)
135
135
 
136
- If you're using an IDE then life is a little simpler. You install build dependencies and the project in the two
137
- steps outlined above, and from that point on you can rely on e.g. CLion's cmake capabilities to do incremental
138
- compilation and editable rebuilds. This will skip scikit-build-core's build backend and all of uv's dependency
136
+ If you're using an IDE then life is a little simpler. You install build dependencies and the project in the two
137
+ steps outlined above, and from that point on you can rely on e.g. CLion's cmake capabilities to do incremental
138
+ compilation and editable rebuilds. This will skip scikit-build-core's build backend and all of uv's dependency
139
139
  management, so for "real" builds you better revert to the CLI. However, this should work fine for coding and debugging.
140
140
 
141
141
 
@@ -179,7 +179,7 @@ uv run --no-build-isolation pytest ./tests --verbose --ignore=./tests/slow
179
179
  COVERAGE=1 uv run --no-build-isolation coverage run -m pytest ./tests --verbose
180
180
  ```
181
181
 
182
- The `COVERAGE` env var will compile the extension with `--coverage`, allowing us to collect coverage stats of C++
182
+ The `COVERAGE` env var will compile the extension with `--coverage`, allowing us to collect coverage stats of C++
183
183
  code as well as Python code.
184
184
 
185
185
  Check coverage for Python code:
@@ -188,7 +188,7 @@ uvx coverage html -d htmlcov-python
188
188
  uvx coverage report --format=markdown
189
189
  ```
190
190
 
191
- Check coverage for C++ code (note: this will clutter your project dir with html files, consider saving them in some
191
+ Check coverage for C++ code (note: this will clutter your project dir with html files, consider saving them in some
192
192
  other place):
193
193
  ```bash
194
194
  uvx gcovr \
@@ -315,7 +315,7 @@ versioning scheme.
315
315
  ```toml
316
316
  [tool.scikit-build]
317
317
  metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
318
-
318
+
319
319
  [tool.setuptools_scm]
320
320
  version_scheme = "duckdb_packaging._setuptools_scm_version:version_scheme"
321
321
  ```
@@ -0,0 +1,47 @@
1
+ _duckdb.cp310-win_amd64.pyd,sha256=ui8dxp-980qdM0Xoas-jom-1IBm007jE_pzppL5I3vQ,35390976
2
+ duckdb/__init__.py,sha256=GmG-Z_dhIy3P8e-AuGz0-rkduKa6SqMqsIot7MMJ1CA,9240
3
+ duckdb/__init__.pyi,sha256=_WQXdLMIiVjpJqSdHGm4a4-EjpzOPU5Mcc0AJEh3G6I,48357
4
+ duckdb/bytes_io_wrapper.py,sha256=o5WcKIHA6EoZTsssRNeoohLeGtCPKY-8yQw-iP1k0SY,3050
5
+ duckdb/experimental/__init__.py,sha256=JTAdXBrgCCenIGe3vzm7a3BuE1jOmgd9yMHG1ZEFSQA,46
6
+ duckdb/experimental/spark/__init__.py,sha256=BKd5s6LUBabQjxliNhs4lAZx48a81Ch5E2NHS-udU3A,291
7
+ duckdb/experimental/spark/_globals.py,sha256=cYR8qr7E5fMAp7vsM8CjpwoLI4-_tnuhRS4qf7b0Vr8,2511
8
+ duckdb/experimental/spark/_typing.py,sha256=D4Q7AvSyVgNxnmJc3nYKgt3S7cgoRbf-YWo-8Mu54jI,1573
9
+ duckdb/experimental/spark/conf.py,sha256=N3PqcMyyNlgJQdjLKTVA_UH_isp7657tcvurp9CU0DE,1443
10
+ duckdb/experimental/spark/context.py,sha256=_1A8A7mlF1QSdeQ0XjPv2ImhN4ajziW7lxo2L4Ul3Ao,6373
11
+ duckdb/experimental/spark/errors/__init__.py,sha256=JikuqdfaCy_Nti4A_yXYk-z1m5sXab83rovIXjKfoH4,2218
12
+ duckdb/experimental/spark/errors/error_classes.py,sha256=5xPdevsInQCcA8NI7Hytzh1mrmX5WvHxe4jUKzocwUc,28167
13
+ duckdb/experimental/spark/errors/exceptions/__init__.py,sha256=skcDKqKaQuFEltWKiUwvSpw1Kzelup5daCFKByxT-Gk,800
14
+ duckdb/experimental/spark/errors/exceptions/base.py,sha256=p3Pp5GQIWLBK-ApWWGOCQJ1YA0LgWgZ9_N94O08Rj-U,5577
15
+ duckdb/experimental/spark/errors/utils.py,sha256=EnzRDKIciMDORkbZKWrn5KJuZkKtBSCpX9ok7qmRfEo,4554
16
+ duckdb/experimental/spark/exception.py,sha256=r3hWeu2EZ9ri0PAyTw38aD7G5qKVsOi8YgtgXMiGfts,550
17
+ duckdb/experimental/spark/LICENSE,sha256=vCGc3GQQzJKXFfRiLOJCSviQBJsHHzTWjewZVVVL8zI,13646
18
+ duckdb/experimental/spark/sql/__init__.py,sha256=e_-3pLvS6PteoCxxCRgQHD_Mpd0JBXpbiNXTU47yjQ4,263
19
+ duckdb/experimental/spark/sql/_typing.py,sha256=FyJ1vvx5et2yH_YatPaLtI4Z40BK7Xwdtvw-GV13bTw,2454
20
+ duckdb/experimental/spark/sql/catalog.py,sha256=_8bruV2yeUk0HRhnY9lsyGRyXPLW1gtODU3V4UfIYJI,2362
21
+ duckdb/experimental/spark/sql/column.py,sha256=SJZWSZZTohHw7wTrS9DjpuzmPtid5Cee78I0o3Vi5hY,11076
22
+ duckdb/experimental/spark/sql/conf.py,sha256=eB1W0-wUa_fNJ0AAFMNxIGmhqr9a0IhPyr9Xesy-pes,679
23
+ duckdb/experimental/spark/sql/dataframe.py,sha256=BBeacpAuo9cjvVjC1qAsEJk5rddasuy9mIyffvGzQqM,47835
24
+ duckdb/experimental/spark/sql/functions.py,sha256=V_oFdX9eG-ZC9-y_1wqwYRZlge4ZmVBqxJE_BWzSU_Q,179329
25
+ duckdb/experimental/spark/sql/group.py,sha256=DLX16aSVFMV6xRvVJ1KCh7um09qTYJb3jQv_FQtTvy4,13695
26
+ duckdb/experimental/spark/sql/readwriter.py,sha256=ie5ENJX9Mxy6eBP9oNS-t5KMEQ3pfHfPvEdXDrVWGt0,17750
27
+ duckdb/experimental/spark/sql/session.py,sha256=XxzgYp78ZrDHyUcH42buJmODQo21-61YWF5hI3fRwsU,9290
28
+ duckdb/experimental/spark/sql/streaming.py,sha256=B0TyLDqG79fLU6Fz7x6TxmcoY5_o0bxziT1k479uMB8,1060
29
+ duckdb/experimental/spark/sql/type_utils.py,sha256=ks6YA2-4JUOHv3xrN3O6nT0d76CKVVxS0qNSS028uBE,3059
30
+ duckdb/experimental/spark/sql/types.py,sha256=Qqx9R65HA-WUT9MlGzy9b25RqfVdn_BW_ms6_DNRBmA,40434
31
+ duckdb/experimental/spark/sql/udf.py,sha256=hwWIvO0o3ipCGtmx9aUtpyC10PQ3NyQL102QB3Q1VqU,1118
32
+ duckdb/filesystem.py,sha256=WMVzCQ2gbe9T60hMw7aAajVqUOHRJvG0XvfgMkKi6hg,1019
33
+ duckdb/functional/__init__.py,sha256=d8qY_IjItw-81ZWXnE_cLmgmEeHzRcmwaEPqHKf_ej8,229
34
+ duckdb/functional/__init__.pyi,sha256=02Yn2rP7YVGnJmCZsXnuvteurPc60qgfy0JEyTi5DNA,805
35
+ duckdb/polars_io.py,sha256=0ezW1ZiII_A3N4GjJDDieCKb6uE4swZXFMxVUgEOmPQ,8221
36
+ duckdb/query_graph/__main__.py,sha256=BWDGf2LKiSXHhQWbIuvc-IXTjE_DqYISGvmtSBBYcx0,11622
37
+ duckdb/typing/__init__.py,sha256=Z5Bd4OzV8NWzrzeo06evSDTbwcknZBAgzCapxgaKEWM,915
38
+ duckdb/typing/__init__.pyi,sha256=sshKVD1s7TqWGCZvVKMVmZe64SsRUZHIt8f5gZ_CPxA,963
39
+ duckdb/udf.py,sha256=-Y1DTF3uZgvufqO7ihvWXbFqWHu8LSME48NLyOeQKEk,693
40
+ duckdb/value/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
+ duckdb/value/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
+ duckdb/value/constant/__init__.py,sha256=cbTGO63hXI7tkoa6Sjw2S_PJYV6IAC8R88n2yVzPuNo,5784
43
+ duckdb/value/constant/__init__.pyi,sha256=Q51_wc2jVyBE7tzeH5X49e6XCs4JJD8a9asX-nqw4ow,3394
44
+ duckdb-1.5.0.dev32.dist-info/METADATA,sha256=h9fDfFkEprPBwtXrSmgIuJ6rGhXZ53A7emTUYakVyE0,14185
45
+ duckdb-1.5.0.dev32.dist-info/WHEEL,sha256=hrGeChGtn46HBGmzasO9QQDSLelRN-tUarBSv4gFcsI,106
46
+ duckdb-1.5.0.dev32.dist-info/licenses/LICENSE,sha256=QACFao8AflP8UxUFM9ZEvK78ZLdGHkPBTMudPWalnNI,1079
47
+ duckdb-1.5.0.dev32.dist-info/RECORD,,
@@ -1,47 +0,0 @@
1
- _duckdb.cp310-win_amd64.pyd,sha256=rl3hn5YF7ZrDaRzU6IGmaULMKrD2NzvPS0M9msc2t24,35393536
2
- duckdb/__init__.py,sha256=pwOhIUUUGkd5zx0-bGCF6980dU7W7KI8Kh6NxOEWwFA,10453
3
- duckdb/__init__.pyi,sha256=ScJdYFoMt05lD4j2n8qCsT7MwKYgPo3x6wbqqDY3haE,51452
4
- duckdb/bytes_io_wrapper.py,sha256=qTyrqmUWbsoSWTPWW0y4-eL7CnA20ahSnXFuatZnZTM,3138
5
- duckdb/experimental/__init__.py,sha256=LuaitcC-RLBqQITO8pyl4g4wKvA1JxpK2mQUzk1v6Wg,62
6
- duckdb/experimental/spark/__init__.py,sha256=pEJGLmqLG3dU3wdpXEiGx3lVpyrTqIqNXlkZDyW9uG8,273
7
- duckdb/experimental/spark/_globals.py,sha256=40WV6dn-3vQdDjGJoTshsAsxL7rSJ_qYLbKTVexlGtY,2562
8
- duckdb/experimental/spark/_typing.py,sha256=UcltBZJZOtm6C9TQk4FhxlqTpeL3zJ19mMzRUPm4N2c,1574
9
- duckdb/experimental/spark/conf.py,sha256=caYx7Q1P8H35B8RpbVLu2nj0ELJ0g3fFULovUa_KcUw,1636
10
- duckdb/experimental/spark/context.py,sha256=2VY5R1tDAfk93l_-wS4RQ72wT7pMLl154E3sM030DG8,6983
11
- duckdb/experimental/spark/errors/__init__.py,sha256=I6BreoZEXBT8AWrtritiBixM8mQLfmDPal9iJOpK4Mg,2200
12
- duckdb/experimental/spark/errors/error_classes.py,sha256=91Ww3AI1IF7hmI-YM7nPaD-d5onN--lLKOeo9GgoSuA,28190
13
- duckdb/experimental/spark/errors/exceptions/__init__.py,sha256=DsbPNVGJEVZ_HBKcJh4-sP_W9v4789GIso9sM7d0yF0,814
14
- duckdb/experimental/spark/errors/exceptions/base.py,sha256=ZJEjJ4KPh_FKzmOqCU67kYuge1fDDaOv3Ww1HrIrEYw,5314
15
- duckdb/experimental/spark/errors/utils.py,sha256=zbyIETv-HPOxsGABFGNx82uT9146JuWSLUycQLAzfRs,4548
16
- duckdb/experimental/spark/exception.py,sha256=xx9vfA_ryGmSSC_MhHsbvk7Cj8VP6XSxfsBHSaKiKCE,651
17
- duckdb/experimental/spark/LICENSE,sha256=vCGc3GQQzJKXFfRiLOJCSviQBJsHHzTWjewZVVVL8zI,13646
18
- duckdb/experimental/spark/sql/__init__.py,sha256=ZRUTYpjIhNir5vJmPWX9VYJq85qnir32bP8AgNsE9QY,277
19
- duckdb/experimental/spark/sql/_typing.py,sha256=PTgRwOMSMnYtlZXcsDAd7ynWCij5yfBN0caZo4p1RIQ,2379
20
- duckdb/experimental/spark/sql/catalog.py,sha256=lh1qIwDH0YqYJub4gBG78YQCnwiO9DDWjvrXES613ug,2587
21
- duckdb/experimental/spark/sql/column.py,sha256=mGZMW1bY5-EUk8VQAH8gY9CjYO1sQkF1hKjzsTNhT80,11452
22
- duckdb/experimental/spark/sql/conf.py,sha256=vqqomhORPBiPz9eBDlM_nm-AlC8JgK-NjSbssr0cFi8,787
23
- duckdb/experimental/spark/sql/dataframe.py,sha256=qyRNImVdTgoXN2AYG28WLwQrSmJ3rZ6dMQaT5Ku2lkE,47840
24
- duckdb/experimental/spark/sql/functions.py,sha256=QRclVWHdOq4wwOCuqLa-TdbvMBGWg9RQU5GpypkDiXc,181337
25
- duckdb/experimental/spark/sql/group.py,sha256=qfOA3xXwNc5LL26xnaB1BEhUz_uInXH20xag1q756DY,13952
26
- duckdb/experimental/spark/sql/readwriter.py,sha256=b7Sazd6LqyHfcdQaKXAOsGHmF4SF_iulzoc2Gm9g6ww,17930
27
- duckdb/experimental/spark/sql/session.py,sha256=baQyZOH5wlUbuDgaxnwcR7ItdOr9Ecjka87prTLh7VM,9858
28
- duckdb/experimental/spark/sql/streaming.py,sha256=7sz9L_URf3ONeetNV1h-nj11sDrOF0lDAWB1Xdg76so,1104
29
- duckdb/experimental/spark/sql/type_utils.py,sha256=a4HC6m6SPPvMSWayagfF37YjY0dm2kV1OuyUE3mm_vw,3132
30
- duckdb/experimental/spark/sql/types.py,sha256=fpBTU8ab3AUe4b4L_GdC5WdvBg8iCnhecdpiAuePmtY,42439
31
- duckdb/experimental/spark/sql/udf.py,sha256=IIYN517bTu5XYnuz5cU3gKrPImmdMOTs6-61jSvtjwE,1210
32
- duckdb/filesystem.py,sha256=TJEHzNAbloZPrDX5gLW9DxH8gffbZnDY6epHiQpHbSk,1148
33
- duckdb/functional/__init__.py,sha256=XXZMbA2OzT0s1oevI3CF1m2e6pYXt_YV585Wqfk6Qj8,211
34
- duckdb/functional/__init__.pyi,sha256=02Yn2rP7YVGnJmCZsXnuvteurPc60qgfy0JEyTi5DNA,805
35
- duckdb/polars_io.py,sha256=sKhehkbNEb6kB-8A3ZishXT90_wM8iHxJOI9-fgYgGw,8292
36
- duckdb/query_graph/__main__.py,sha256=FFJE6nOnrf3ZnAgRaES3CTaILfQfo9h0FeJ35cPjsOo,11834
37
- duckdb/typing/__init__.py,sha256=MHIyzNkwfoB9M6UQcR5HiXQXu6tCFlZzzHkdfhNrDC0,931
38
- duckdb/typing/__init__.pyi,sha256=1EzrU-w5XebL2Aos4pHDPWT40TfI45M1BCZhwhxROiY,983
39
- duckdb/udf.py,sha256=fa5mDGCMNPBkDDcWO3YTnIafEqVdwH4K2VJkbXg0_es,763
40
- duckdb/value/__init__.py,sha256=L3FIrKSnCnvhjGM6DCwE4Q2w3OuFmMgxXJMzZneV8dM,14
41
- duckdb/value/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
- duckdb/value/constant/__init__.py,sha256=rWw0y3gc1zs0k0sHJSYTnjOqKJ1ByJoIR6mhdmMnVZI,6091
43
- duckdb/value/constant/__init__.pyi,sha256=SH8yCfP1cpL8eB8HVQnSvFf1qRLDGcIMvoS6PN2ftu0,3380
44
- duckdb-1.4.1.dev113.dist-info/METADATA,sha256=TRG88LBQIA3rsiYdkyE6ErJbdW3B6Xs5pQRBetk-Heo,14079
45
- duckdb-1.4.1.dev113.dist-info/WHEEL,sha256=hrGeChGtn46HBGmzasO9QQDSLelRN-tUarBSv4gFcsI,106
46
- duckdb-1.4.1.dev113.dist-info/licenses/LICENSE,sha256=QACFao8AflP8UxUFM9ZEvK78ZLdGHkPBTMudPWalnNI,1079
47
- duckdb-1.4.1.dev113.dist-info/RECORD,,