sqlframe 1.9.0__py3-none-any.whl → 1.10.0__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/function_alternatives.py +96 -0
- sqlframe/base/functions.py +4013 -1
- sqlframe/base/session.py +2 -2
- sqlframe/base/types.py +1 -1
- sqlframe/base/util.py +5 -0
- sqlframe/bigquery/functions.py +4 -0
- sqlframe/bigquery/functions.pyi +37 -1
- sqlframe/duckdb/functions.py +3 -0
- sqlframe/duckdb/functions.pyi +29 -0
- sqlframe/postgres/functions.py +6 -0
- sqlframe/postgres/functions.pyi +28 -0
- sqlframe/snowflake/functions.py +3 -0
- sqlframe/snowflake/functions.pyi +27 -0
- sqlframe/spark/functions.pyi +161 -1
- {sqlframe-1.9.0.dist-info → sqlframe-1.10.0.dist-info}/METADATA +1 -1
- {sqlframe-1.9.0.dist-info → sqlframe-1.10.0.dist-info}/RECORD +20 -20
- {sqlframe-1.9.0.dist-info → sqlframe-1.10.0.dist-info}/LICENSE +0 -0
- {sqlframe-1.9.0.dist-info → sqlframe-1.10.0.dist-info}/WHEEL +0 -0
- {sqlframe-1.9.0.dist-info → sqlframe-1.10.0.dist-info}/top_level.txt +0 -0
sqlframe/spark/functions.pyi
CHANGED
|
@@ -7,22 +7,30 @@ from sqlframe.base.functions import (
|
|
|
7
7
|
abs as abs,
|
|
8
8
|
acos as acos,
|
|
9
9
|
acosh as acosh,
|
|
10
|
-
aes_encrypt as aes_encrypt,
|
|
11
10
|
aes_decrypt as aes_decrypt,
|
|
11
|
+
aes_encrypt as aes_encrypt,
|
|
12
12
|
aggregate as aggregate,
|
|
13
|
+
any_value as any_value,
|
|
13
14
|
approxCountDistinct as approxCountDistinct,
|
|
14
15
|
approx_count_distinct as approx_count_distinct,
|
|
16
|
+
approx_percentile as approx_percentile,
|
|
15
17
|
array as array,
|
|
18
|
+
array_agg as array_agg,
|
|
19
|
+
array_append as array_append,
|
|
20
|
+
array_compact as array_compact,
|
|
16
21
|
array_contains as array_contains,
|
|
17
22
|
array_distinct as array_distinct,
|
|
18
23
|
array_except as array_except,
|
|
24
|
+
array_insert as array_insert,
|
|
19
25
|
array_intersect as array_intersect,
|
|
20
26
|
array_join as array_join,
|
|
21
27
|
array_max as array_max,
|
|
22
28
|
array_min as array_min,
|
|
23
29
|
array_position as array_position,
|
|
30
|
+
array_prepend as array_prepend,
|
|
24
31
|
array_remove as array_remove,
|
|
25
32
|
array_repeat as array_repeat,
|
|
33
|
+
array_size as array_size,
|
|
26
34
|
array_sort as array_sort,
|
|
27
35
|
array_union as array_union,
|
|
28
36
|
arrays_zip as arrays_zip,
|
|
@@ -39,20 +47,42 @@ from sqlframe.base.functions import (
|
|
|
39
47
|
avg as avg,
|
|
40
48
|
base64 as base64,
|
|
41
49
|
bin as bin,
|
|
50
|
+
bit_and as bit_and,
|
|
51
|
+
bit_count as bit_count,
|
|
52
|
+
bit_get as bit_get,
|
|
42
53
|
bit_length as bit_length,
|
|
54
|
+
bit_or as bit_or,
|
|
55
|
+
bit_xor as bit_xor,
|
|
56
|
+
bitmap_bit_position as bitmap_bit_position,
|
|
57
|
+
bitmap_bucket_number as bitmap_bucket_number,
|
|
58
|
+
bitmap_construct_agg as bitmap_construct_agg,
|
|
59
|
+
bitmap_count as bitmap_count,
|
|
60
|
+
bitmap_or_agg as bitmap_or_agg,
|
|
43
61
|
bitwiseNOT as bitwiseNOT,
|
|
44
62
|
bitwise_not as bitwise_not,
|
|
63
|
+
bool_and as bool_and,
|
|
64
|
+
bool_or as bool_or,
|
|
65
|
+
broadcast as broadcast,
|
|
45
66
|
bround as bround,
|
|
67
|
+
btrim as btrim,
|
|
68
|
+
bucket as bucket,
|
|
69
|
+
call_function as call_function,
|
|
70
|
+
cardinality as cardinality,
|
|
46
71
|
cbrt as cbrt,
|
|
47
72
|
ceil as ceil,
|
|
48
73
|
ceiling as ceiling,
|
|
74
|
+
char as char,
|
|
75
|
+
char_length as char_length,
|
|
76
|
+
character_length as character_length,
|
|
49
77
|
coalesce as coalesce,
|
|
50
78
|
col as col,
|
|
51
79
|
collect_list as collect_list,
|
|
52
80
|
collect_set as collect_set,
|
|
53
81
|
concat as concat,
|
|
54
82
|
concat_ws as concat_ws,
|
|
83
|
+
contains as contains,
|
|
55
84
|
conv as conv,
|
|
85
|
+
convert_timezone as convert_timezone,
|
|
56
86
|
corr as corr,
|
|
57
87
|
cos as cos,
|
|
58
88
|
cosh as cosh,
|
|
@@ -60,22 +90,37 @@ from sqlframe.base.functions import (
|
|
|
60
90
|
count as count,
|
|
61
91
|
countDistinct as countDistinct,
|
|
62
92
|
count_distinct as count_distinct,
|
|
93
|
+
count_if as count_if,
|
|
94
|
+
count_min_sketch as count_min_sketch,
|
|
63
95
|
covar_pop as covar_pop,
|
|
64
96
|
covar_samp as covar_samp,
|
|
65
97
|
crc32 as crc32,
|
|
66
98
|
create_map as create_map,
|
|
67
99
|
csc as csc,
|
|
68
100
|
cume_dist as cume_dist,
|
|
101
|
+
curdate as curdate,
|
|
102
|
+
current_catalog as current_catalog,
|
|
103
|
+
current_database as current_database,
|
|
69
104
|
current_date as current_date,
|
|
105
|
+
current_schema as current_schema,
|
|
70
106
|
current_timestamp as current_timestamp,
|
|
107
|
+
current_timezone as current_timezone,
|
|
108
|
+
current_user as current_user,
|
|
71
109
|
date_add as date_add,
|
|
72
110
|
date_diff as date_diff,
|
|
73
111
|
date_format as date_format,
|
|
112
|
+
date_from_unix_date as date_from_unix_date,
|
|
113
|
+
date_part as date_part,
|
|
74
114
|
date_sub as date_sub,
|
|
75
115
|
date_trunc as date_trunc,
|
|
116
|
+
dateadd as dateadd,
|
|
117
|
+
datediff as datediff,
|
|
118
|
+
datepart as datepart,
|
|
119
|
+
day as day,
|
|
76
120
|
dayofmonth as dayofmonth,
|
|
77
121
|
dayofweek as dayofweek,
|
|
78
122
|
dayofyear as dayofyear,
|
|
123
|
+
days as days,
|
|
79
124
|
decode as decode,
|
|
80
125
|
degrees as degrees,
|
|
81
126
|
dense_rank as dense_rank,
|
|
@@ -84,16 +129,23 @@ from sqlframe.base.functions import (
|
|
|
84
129
|
desc_nulls_last as desc_nulls_last,
|
|
85
130
|
e as e,
|
|
86
131
|
element_at as element_at,
|
|
132
|
+
elt as elt,
|
|
87
133
|
encode as encode,
|
|
134
|
+
endswith as endswith,
|
|
135
|
+
equal_null as equal_null,
|
|
136
|
+
every as every,
|
|
88
137
|
exists as exists,
|
|
89
138
|
exp as exp,
|
|
90
139
|
explode as explode,
|
|
91
140
|
explode_outer as explode_outer,
|
|
92
141
|
expm1 as expm1,
|
|
93
142
|
expr as expr,
|
|
143
|
+
extract as extract,
|
|
94
144
|
factorial as factorial,
|
|
95
145
|
filter as filter,
|
|
146
|
+
find_in_set as find_in_set,
|
|
96
147
|
first as first,
|
|
148
|
+
first_value as first_value,
|
|
97
149
|
flatten as flatten,
|
|
98
150
|
floor as floor,
|
|
99
151
|
forall as forall,
|
|
@@ -103,28 +155,52 @@ from sqlframe.base.functions import (
|
|
|
103
155
|
from_json as from_json,
|
|
104
156
|
from_unixtime as from_unixtime,
|
|
105
157
|
from_utc_timestamp as from_utc_timestamp,
|
|
158
|
+
get as get,
|
|
159
|
+
get_active_spark_context as get_active_spark_context,
|
|
106
160
|
get_json_object as get_json_object,
|
|
161
|
+
getbit as getbit,
|
|
107
162
|
greatest as greatest,
|
|
163
|
+
grouping as grouping,
|
|
108
164
|
grouping_id as grouping_id,
|
|
109
165
|
hash as hash,
|
|
110
166
|
hex as hex,
|
|
167
|
+
histogram_numeric as histogram_numeric,
|
|
168
|
+
hll_sketch_agg as hll_sketch_agg,
|
|
169
|
+
hll_sketch_estimate as hll_sketch_estimate,
|
|
170
|
+
hll_union as hll_union,
|
|
171
|
+
hll_union_agg as hll_union_agg,
|
|
111
172
|
hour as hour,
|
|
173
|
+
hours as hours,
|
|
112
174
|
hypot as hypot,
|
|
175
|
+
ifnull as ifnull,
|
|
176
|
+
ilike as ilike,
|
|
113
177
|
initcap as initcap,
|
|
178
|
+
inline as inline,
|
|
179
|
+
inline_outer as inline_outer,
|
|
114
180
|
input_file_name as input_file_name,
|
|
115
181
|
instr as instr,
|
|
116
182
|
isnan as isnan,
|
|
183
|
+
isnotnull as isnotnull,
|
|
117
184
|
isnull as isnull,
|
|
185
|
+
java_method as java_method,
|
|
186
|
+
json_array_length as json_array_length,
|
|
187
|
+
json_object_keys as json_object_keys,
|
|
118
188
|
json_tuple as json_tuple,
|
|
119
189
|
kurtosis as kurtosis,
|
|
120
190
|
lag as lag,
|
|
121
191
|
last as last,
|
|
122
192
|
last_day as last_day,
|
|
193
|
+
last_value as last_value,
|
|
194
|
+
lcase as lcase,
|
|
123
195
|
lead as lead,
|
|
124
196
|
least as least,
|
|
197
|
+
left as left,
|
|
125
198
|
length as length,
|
|
126
199
|
levenshtein as levenshtein,
|
|
200
|
+
like as like,
|
|
127
201
|
lit as lit,
|
|
202
|
+
ln as ln,
|
|
203
|
+
localtimestamp as localtimestamp,
|
|
128
204
|
locate as locate,
|
|
129
205
|
log as log,
|
|
130
206
|
log10 as log10,
|
|
@@ -134,8 +210,14 @@ from sqlframe.base.functions import (
|
|
|
134
210
|
lpad as lpad,
|
|
135
211
|
ltrim as ltrim,
|
|
136
212
|
make_date as make_date,
|
|
213
|
+
make_dt_interval as make_dt_interval,
|
|
137
214
|
make_interval as make_interval,
|
|
215
|
+
make_timestamp as make_timestamp,
|
|
216
|
+
make_timestamp_ltz as make_timestamp_ltz,
|
|
217
|
+
make_timestamp_ntz as make_timestamp_ntz,
|
|
218
|
+
make_ym_interval as make_ym_interval,
|
|
138
219
|
map_concat as map_concat,
|
|
220
|
+
map_contains_key as map_contains_key,
|
|
139
221
|
map_entries as map_entries,
|
|
140
222
|
map_filter as map_filter,
|
|
141
223
|
map_from_arrays as map_from_arrays,
|
|
@@ -143,39 +225,76 @@ from sqlframe.base.functions import (
|
|
|
143
225
|
map_keys as map_keys,
|
|
144
226
|
map_values as map_values,
|
|
145
227
|
map_zip_with as map_zip_with,
|
|
228
|
+
mask as mask,
|
|
146
229
|
max as max,
|
|
147
230
|
max_by as max_by,
|
|
148
231
|
md5 as md5,
|
|
149
232
|
mean as mean,
|
|
233
|
+
median as median,
|
|
150
234
|
min as min,
|
|
151
235
|
min_by as min_by,
|
|
152
236
|
minute as minute,
|
|
237
|
+
mode as mode,
|
|
153
238
|
monotonically_increasing_id as monotonically_increasing_id,
|
|
154
239
|
month as month,
|
|
240
|
+
months as months,
|
|
155
241
|
months_between as months_between,
|
|
242
|
+
named_struct as named_struct,
|
|
156
243
|
nanvl as nanvl,
|
|
244
|
+
negate as negate,
|
|
245
|
+
negative as negative,
|
|
157
246
|
next_day as next_day,
|
|
247
|
+
now as now,
|
|
158
248
|
nth_value as nth_value,
|
|
159
249
|
ntile as ntile,
|
|
160
250
|
nullif as nullif,
|
|
251
|
+
nvl as nvl,
|
|
252
|
+
nvl2 as nvl2,
|
|
161
253
|
octet_length as octet_length,
|
|
162
254
|
overlay as overlay,
|
|
255
|
+
parse_url as parse_url,
|
|
163
256
|
percent_rank as percent_rank,
|
|
164
257
|
percentile_approx as percentile_approx,
|
|
258
|
+
pi as pi,
|
|
259
|
+
pmod as pmod,
|
|
165
260
|
posexplode as posexplode,
|
|
166
261
|
posexplode_outer as posexplode_outer,
|
|
262
|
+
position as position,
|
|
263
|
+
positive as positive,
|
|
167
264
|
pow as pow,
|
|
265
|
+
power as power,
|
|
266
|
+
printf as printf,
|
|
168
267
|
quarter as quarter,
|
|
169
268
|
radians as radians,
|
|
170
269
|
raise_error as raise_error,
|
|
171
270
|
rand as rand,
|
|
172
271
|
randn as randn,
|
|
173
272
|
rank as rank,
|
|
273
|
+
reduce as reduce,
|
|
274
|
+
reflect as reflect,
|
|
275
|
+
regexp as regexp,
|
|
276
|
+
regexp_count as regexp_count,
|
|
174
277
|
regexp_extract as regexp_extract,
|
|
278
|
+
regexp_extract_all as regexp_extract_all,
|
|
279
|
+
regexp_instr as regexp_instr,
|
|
280
|
+
regexp_like as regexp_like,
|
|
175
281
|
regexp_replace as regexp_replace,
|
|
282
|
+
regexp_substr as regexp_substr,
|
|
283
|
+
regr_avgx as regr_avgx,
|
|
284
|
+
regr_avgy as regr_avgy,
|
|
285
|
+
regr_count as regr_count,
|
|
286
|
+
regr_intercept as regr_intercept,
|
|
287
|
+
regr_r2 as regr_r2,
|
|
288
|
+
regr_slope as regr_slope,
|
|
289
|
+
regr_sxx as regr_sxx,
|
|
290
|
+
regr_sxy as regr_sxy,
|
|
291
|
+
regr_syy as regr_syy,
|
|
176
292
|
repeat as repeat,
|
|
293
|
+
replace as replace,
|
|
177
294
|
reverse as reverse,
|
|
295
|
+
right as right,
|
|
178
296
|
rint as rint,
|
|
297
|
+
rlike as rlike,
|
|
179
298
|
round as round,
|
|
180
299
|
row_number as row_number,
|
|
181
300
|
rpad as rpad,
|
|
@@ -186,6 +305,7 @@ from sqlframe.base.functions import (
|
|
|
186
305
|
second as second,
|
|
187
306
|
sentences as sentences,
|
|
188
307
|
sequence as sequence,
|
|
308
|
+
sha as sha,
|
|
189
309
|
sha1 as sha1,
|
|
190
310
|
sha2 as sha2,
|
|
191
311
|
shiftLeft as shiftLeft,
|
|
@@ -195,21 +315,29 @@ from sqlframe.base.functions import (
|
|
|
195
315
|
shiftright as shiftright,
|
|
196
316
|
shiftrightunsigned as shiftrightunsigned,
|
|
197
317
|
shuffle as shuffle,
|
|
318
|
+
sign as sign,
|
|
198
319
|
signum as signum,
|
|
199
320
|
sin as sin,
|
|
200
321
|
sinh as sinh,
|
|
201
322
|
size as size,
|
|
202
323
|
skewness as skewness,
|
|
203
324
|
slice as slice,
|
|
325
|
+
some as some,
|
|
204
326
|
sort_array as sort_array,
|
|
205
327
|
soundex as soundex,
|
|
328
|
+
spark_partition_id as spark_partition_id,
|
|
206
329
|
split as split,
|
|
330
|
+
split_part as split_part,
|
|
207
331
|
sqrt as sqrt,
|
|
208
332
|
stack as stack,
|
|
333
|
+
startswith as startswith,
|
|
334
|
+
std as std,
|
|
209
335
|
stddev as stddev,
|
|
210
336
|
stddev_pop as stddev_pop,
|
|
211
337
|
stddev_samp as stddev_samp,
|
|
338
|
+
str_to_map as str_to_map,
|
|
212
339
|
struct as struct,
|
|
340
|
+
substr as substr,
|
|
213
341
|
substring as substring,
|
|
214
342
|
substring_index as substring_index,
|
|
215
343
|
sum as sum,
|
|
@@ -217,15 +345,23 @@ from sqlframe.base.functions import (
|
|
|
217
345
|
sum_distinct as sum_distinct,
|
|
218
346
|
tan as tan,
|
|
219
347
|
tanh as tanh,
|
|
348
|
+
timestamp_micros as timestamp_micros,
|
|
349
|
+
timestamp_millis as timestamp_millis,
|
|
220
350
|
timestamp_seconds as timestamp_seconds,
|
|
221
351
|
toDegrees as toDegrees,
|
|
222
352
|
toRadians as toRadians,
|
|
223
353
|
to_binary as to_binary,
|
|
354
|
+
to_char as to_char,
|
|
224
355
|
to_csv as to_csv,
|
|
225
356
|
to_date as to_date,
|
|
226
357
|
to_json as to_json,
|
|
358
|
+
to_number as to_number,
|
|
227
359
|
to_timestamp as to_timestamp,
|
|
360
|
+
to_timestamp_ltz as to_timestamp_ltz,
|
|
361
|
+
to_timestamp_ntz as to_timestamp_ntz,
|
|
362
|
+
to_unix_timestamp as to_unix_timestamp,
|
|
228
363
|
to_utc_timestamp as to_utc_timestamp,
|
|
364
|
+
to_varchar as to_varchar,
|
|
229
365
|
transform as transform,
|
|
230
366
|
transform_keys as transform_keys,
|
|
231
367
|
transform_values as transform_values,
|
|
@@ -233,24 +369,48 @@ from sqlframe.base.functions import (
|
|
|
233
369
|
trim as trim,
|
|
234
370
|
trunc as trunc,
|
|
235
371
|
try_add as try_add,
|
|
372
|
+
try_aes_decrypt as try_aes_decrypt,
|
|
236
373
|
try_avg as try_avg,
|
|
237
374
|
try_divide as try_divide,
|
|
375
|
+
try_element_at as try_element_at,
|
|
238
376
|
try_multiply as try_multiply,
|
|
239
377
|
try_subtract as try_subtract,
|
|
240
378
|
try_sum as try_sum,
|
|
241
379
|
try_to_binary as try_to_binary,
|
|
242
380
|
try_to_number as try_to_number,
|
|
381
|
+
try_to_timestamp as try_to_timestamp,
|
|
243
382
|
typeof as typeof,
|
|
383
|
+
ucase as ucase,
|
|
244
384
|
unbase64 as unbase64,
|
|
245
385
|
unhex as unhex,
|
|
386
|
+
unix_date as unix_date,
|
|
387
|
+
unix_micros as unix_micros,
|
|
388
|
+
unix_millis as unix_millis,
|
|
389
|
+
unix_seconds as unix_seconds,
|
|
246
390
|
unix_timestamp as unix_timestamp,
|
|
247
391
|
upper as upper,
|
|
392
|
+
url_decode as url_decode,
|
|
393
|
+
url_encode as url_encode,
|
|
394
|
+
user as user,
|
|
248
395
|
var_pop as var_pop,
|
|
249
396
|
var_samp as var_samp,
|
|
250
397
|
variance as variance,
|
|
398
|
+
version as version,
|
|
399
|
+
weekday as weekday,
|
|
251
400
|
weekofyear as weekofyear,
|
|
252
401
|
when as when,
|
|
402
|
+
width_bucket as width_bucket,
|
|
403
|
+
xpath as xpath,
|
|
404
|
+
xpath_boolean as xpath_boolean,
|
|
405
|
+
xpath_double as xpath_double,
|
|
406
|
+
xpath_float as xpath_float,
|
|
407
|
+
xpath_int as xpath_int,
|
|
408
|
+
xpath_long as xpath_long,
|
|
409
|
+
xpath_number as xpath_number,
|
|
410
|
+
xpath_short as xpath_short,
|
|
411
|
+
xpath_string as xpath_string,
|
|
253
412
|
xxhash64 as xxhash64,
|
|
254
413
|
year as year,
|
|
414
|
+
years as years,
|
|
255
415
|
zip_with as zip_with,
|
|
256
416
|
)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
sqlframe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
sqlframe/_version.py,sha256=
|
|
2
|
+
sqlframe/_version.py,sha256=PEdW0PLUrZm2JiH_V3EAqPOK-ZxEDfT2nPsBGV10Pow,413
|
|
3
3
|
sqlframe/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
sqlframe/base/_typing.py,sha256=DuTay8-o9W-pw3RPZCgLunKNJLS9PkaV11G_pxXp9NY,1256
|
|
5
5
|
sqlframe/base/catalog.py,sha256=ATDGirouUjal05P4ymL-wIi8rgjg_8w4PoACamiO64A,37245
|
|
@@ -7,16 +7,16 @@ sqlframe/base/column.py,sha256=5bfJWj9dnStHUxLSrWMD-gwiC4-aHKC8lhoC62nhM1k,16153
|
|
|
7
7
|
sqlframe/base/dataframe.py,sha256=uL4neDTMy1a9XJH46YLQryzdDci4iDxNXBtiJOzfHfs,67718
|
|
8
8
|
sqlframe/base/decorators.py,sha256=I5osMgx9BuCgbtp4jVM2DNwYJVLzCv-OtTedhQEik0g,1882
|
|
9
9
|
sqlframe/base/exceptions.py,sha256=pCB9hXX4jxZWzNg3JN1i38cv3BmpUlee5NoLYx3YXIQ,208
|
|
10
|
-
sqlframe/base/function_alternatives.py,sha256=
|
|
11
|
-
sqlframe/base/functions.py,sha256=
|
|
10
|
+
sqlframe/base/function_alternatives.py,sha256=QESqZy7Osp9-CV5Yoi6XFat5SE8PzCVZ3o7gOFmIY7g,45888
|
|
11
|
+
sqlframe/base/functions.py,sha256=hJDpE7GYQpQ1iHjdr1hG_hu0mAIb60vNoghjEcgMREI,187550
|
|
12
12
|
sqlframe/base/group.py,sha256=TES9CleVmH3x-0X-tqmuUKfCKSWjH5vg1aU3R6dDmFc,4059
|
|
13
13
|
sqlframe/base/normalize.py,sha256=nXAJ5CwxVf4DV0GsH-q1w0p8gmjSMlv96k_ez1eVul8,3880
|
|
14
14
|
sqlframe/base/operations.py,sha256=-AhNuEzcV7ZExoP1oY3blaKip-joQyJeQVvfBTs_2g4,3456
|
|
15
15
|
sqlframe/base/readerwriter.py,sha256=5NPQMiOrw6I54U243R_6-ynnWYsNksgqwRpPp4IFjIw,25288
|
|
16
|
-
sqlframe/base/session.py,sha256=
|
|
16
|
+
sqlframe/base/session.py,sha256=2C0OsPoP49AuqVNtPiazTdVpwQA1668g5WOydrYP6SA,22001
|
|
17
17
|
sqlframe/base/transforms.py,sha256=y0j3SGDz3XCmNGrvassk1S-owllUWfkHyMgZlY6SFO4,467
|
|
18
|
-
sqlframe/base/types.py,sha256=
|
|
19
|
-
sqlframe/base/util.py,sha256=
|
|
18
|
+
sqlframe/base/types.py,sha256=QbJaJvSv2jaKRxOnIVpun1zHPn8AqJeWVWMbDvNwavE,11977
|
|
19
|
+
sqlframe/base/util.py,sha256=o97w8XUXqLDGEjwwjJG-87LRINDsozmVPUo1gB7yw4w,9364
|
|
20
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=NhuPGxIqPjyuC_V_NALN1sn9v9h0-xwFOlJyJgsvyek,14212
|
|
@@ -26,8 +26,8 @@ sqlframe/bigquery/__init__.py,sha256=i2NsMbiXOj2xphCtPuNk6cVw4iYeq5_B1I9dVI9aGAk
|
|
|
26
26
|
sqlframe/bigquery/catalog.py,sha256=h3aQAQAJg6MMvFpP8Ku0S4pcx30n5qYrqHhWSomxb6A,9319
|
|
27
27
|
sqlframe/bigquery/column.py,sha256=E1tUa62Y5HajkhgFuebU9zohrGyieudcHzTT8gfalio,40
|
|
28
28
|
sqlframe/bigquery/dataframe.py,sha256=fPQ6043aSS_ds30WsvrYOgNZJPH0jq7BeNHGLQ2MEW4,1372
|
|
29
|
-
sqlframe/bigquery/functions.py,sha256=
|
|
30
|
-
sqlframe/bigquery/functions.pyi,sha256=
|
|
29
|
+
sqlframe/bigquery/functions.py,sha256=2YqJmBG0F0o10cztFZoP-G4px1QMKuHST6jlj1snUfY,11331
|
|
30
|
+
sqlframe/bigquery/functions.pyi,sha256=JiyLFLiO0jyJec6j1o4ujPVQ7Tma-c9YHlm-3UQYD9M,13642
|
|
31
31
|
sqlframe/bigquery/group.py,sha256=UVBNBRTo8OqS-_cS5YwvTeJYgYxeG-d6R3kfyHmlFqw,391
|
|
32
32
|
sqlframe/bigquery/readwriter.py,sha256=WAD3ZMwkkjOpvPPoZXfaLLNM6tRTeUvdEj-hQZAzXeo,870
|
|
33
33
|
sqlframe/bigquery/session.py,sha256=1-hE1Wr2b6SqfD4M_-OGMqjaSbhD6wSQd74v71xHZv8,2709
|
|
@@ -37,8 +37,8 @@ sqlframe/duckdb/__init__.py,sha256=t85TA3ufZtL1weQNFmEs8itCSwbJFtw03-p0GT4XGf8,6
|
|
|
37
37
|
sqlframe/duckdb/catalog.py,sha256=rt3XuP3m4DbhuibOFyvx_95F2zZa6uDwCI_TmcvKy1A,3895
|
|
38
38
|
sqlframe/duckdb/column.py,sha256=wkEPcp3xVsH5nC3kpacXqNkRv9htPtBgt-0uFRxIRNs,56
|
|
39
39
|
sqlframe/duckdb/dataframe.py,sha256=RPdXSOv_wCB0R5E5fzRMYOGFHilb4egqRk3UgiT6WEU,1530
|
|
40
|
-
sqlframe/duckdb/functions.py,sha256=
|
|
41
|
-
sqlframe/duckdb/functions.pyi,sha256=
|
|
40
|
+
sqlframe/duckdb/functions.py,sha256=pz40eqR4U_s42p7UeaefJD5yU1vo6mqNoVz0iKN5eRk,1671
|
|
41
|
+
sqlframe/duckdb/functions.pyi,sha256=nU-6a2cfLDkuMCdYrNRLfa6-i8Aa0CxQQ1nLT6roIdI,5813
|
|
42
42
|
sqlframe/duckdb/group.py,sha256=IkhbW42Ng1U5YT3FkIdiB4zBqRkW4QyTb-1detY1e_4,383
|
|
43
43
|
sqlframe/duckdb/readwriter.py,sha256=6xiyE3JKzY9ieKqvbAOBlifiHE6NpYISHul3Idlmoa0,4542
|
|
44
44
|
sqlframe/duckdb/session.py,sha256=j75iIsmaxl5x7oqyhN_VolvEclKj7QmaFfIis-SmoKM,2147
|
|
@@ -48,8 +48,8 @@ sqlframe/postgres/__init__.py,sha256=Sz_MtgV_oh_QhfZTC7iKM07ICUmNcJEDV0kEkSW9ZKU
|
|
|
48
48
|
sqlframe/postgres/catalog.py,sha256=L5heEav8PTtKJDofJTf-51_cCLpZud5lDvZC-RFZIaw,3722
|
|
49
49
|
sqlframe/postgres/column.py,sha256=E1tUa62Y5HajkhgFuebU9zohrGyieudcHzTT8gfalio,40
|
|
50
50
|
sqlframe/postgres/dataframe.py,sha256=feGvQo7GD-YGmWWGc5h94CMVZm0gcgUQsdlAktXS4Ac,1492
|
|
51
|
-
sqlframe/postgres/functions.py,sha256=
|
|
52
|
-
sqlframe/postgres/functions.pyi,sha256=
|
|
51
|
+
sqlframe/postgres/functions.py,sha256=b9ccP5vY8EDZXkJbhE_LjAlH50_6wcUF9VbzPrariec,2374
|
|
52
|
+
sqlframe/postgres/functions.pyi,sha256=um-qE2g9iPs0-53vJ46lArbfvDqAbFIwrxLJgcrPM_8,5536
|
|
53
53
|
sqlframe/postgres/group.py,sha256=KUXeSFKWTSH9yCRJAhW85OvjZaG6Zr4In9LR_ie3yGU,391
|
|
54
54
|
sqlframe/postgres/readwriter.py,sha256=L1e3yKXzFVNR_W5s1DHaWol7G8x7l4jcZ5sLGualyMk,870
|
|
55
55
|
sqlframe/postgres/session.py,sha256=oKh8-j9MN6msVheQNCYoGmej9ktFLTTHmlMP58uZ3nw,1936
|
|
@@ -69,8 +69,8 @@ sqlframe/snowflake/__init__.py,sha256=nuQ3cuHjDpW4ELZfbd2qOYmtXmcYl7MtsrdOrRdozo
|
|
|
69
69
|
sqlframe/snowflake/catalog.py,sha256=uDjBgDdCyxaDkGNX_8tb-lol7MwwazcClUBAZsOSj70,5014
|
|
70
70
|
sqlframe/snowflake/column.py,sha256=E1tUa62Y5HajkhgFuebU9zohrGyieudcHzTT8gfalio,40
|
|
71
71
|
sqlframe/snowflake/dataframe.py,sha256=OJ27NudBUE3XX9mc8ywooGhYV4ijF9nX2K_nkHRcTx4,1393
|
|
72
|
-
sqlframe/snowflake/functions.py,sha256=
|
|
73
|
-
sqlframe/snowflake/functions.pyi,sha256=
|
|
72
|
+
sqlframe/snowflake/functions.py,sha256=cIO56ZsOpjg6ICLjTh-osG1h1UjjEtM39_ieMiWkmyI,2466
|
|
73
|
+
sqlframe/snowflake/functions.pyi,sha256=MkNif_sIceHMNhl-qvLir2DJ1jPqwyaahltdpgY4Jq0,6213
|
|
74
74
|
sqlframe/snowflake/group.py,sha256=pPP1l2RRo_LgkXrji8a87n2PKo-63ZRPT-WUtvVcBME,395
|
|
75
75
|
sqlframe/snowflake/readwriter.py,sha256=yhRc2HcMq6PwV3ghZWC-q-qaE7LE4aEjZEXCip4OOlQ,884
|
|
76
76
|
sqlframe/snowflake/session.py,sha256=bDOlnuIiQ9j_zfF7F5H1gTLmpHUjruIxr2CfXcS_7YU,3284
|
|
@@ -81,7 +81,7 @@ sqlframe/spark/catalog.py,sha256=rIX5DtPnINbcPZRUe4Z1bOpkJoNRlrO9qWkUeTQClNc,326
|
|
|
81
81
|
sqlframe/spark/column.py,sha256=E1tUa62Y5HajkhgFuebU9zohrGyieudcHzTT8gfalio,40
|
|
82
82
|
sqlframe/spark/dataframe.py,sha256=V3z5Bx9snLgYh4bDwJfJb5mj1P7UsZF8DMlLwZXopBg,1309
|
|
83
83
|
sqlframe/spark/functions.py,sha256=PkK4MBpVADhnDbrgFDii5zFaNrhi4y-OYX3Lcu-SW0k,530
|
|
84
|
-
sqlframe/spark/functions.pyi,sha256=
|
|
84
|
+
sqlframe/spark/functions.pyi,sha256=bjz6s8E6OB0c4KfTTsls7rhb_R9mIYvkaeaXefMziqM,11617
|
|
85
85
|
sqlframe/spark/group.py,sha256=MrvV_v-YkBc6T1zz882WrEqtWjlooWIyHBCmTQg3fCA,379
|
|
86
86
|
sqlframe/spark/readwriter.py,sha256=w68EImTcGJv64X7pc1tk5tDjDxb1nAnn-MiIaaN9Dc8,812
|
|
87
87
|
sqlframe/spark/session.py,sha256=ztIS7VCFxjR3B7i4JXaXo0evTUhUjOsIAZb7Ssqt2cU,4254
|
|
@@ -97,8 +97,8 @@ sqlframe/standalone/readwriter.py,sha256=EZNyDJ4ID6sGNog3uP4-e9RvchX4biJJDNtc5hk
|
|
|
97
97
|
sqlframe/standalone/session.py,sha256=wQmdu2sv6KMTAv0LRFk7TY7yzlh3xvmsyqilEtRecbY,1191
|
|
98
98
|
sqlframe/standalone/types.py,sha256=KwNyuXIo-2xVVd4bZED3YrQOobKCtemlxGrJL7DrTC8,34
|
|
99
99
|
sqlframe/standalone/window.py,sha256=6GKPzuxeSapJakBaKBeT9VpED1ACdjggDv9JRILDyV0,35
|
|
100
|
-
sqlframe-1.
|
|
101
|
-
sqlframe-1.
|
|
102
|
-
sqlframe-1.
|
|
103
|
-
sqlframe-1.
|
|
104
|
-
sqlframe-1.
|
|
100
|
+
sqlframe-1.10.0.dist-info/LICENSE,sha256=VZu79YgW780qxaFJMr0t5ZgbOYEh04xWoxaWOaqIGWk,1068
|
|
101
|
+
sqlframe-1.10.0.dist-info/METADATA,sha256=Z983jSJyRrSOcfu5Y8DFI-aROxse_TVWFPVGkJ-WV70,7497
|
|
102
|
+
sqlframe-1.10.0.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
103
|
+
sqlframe-1.10.0.dist-info/top_level.txt,sha256=T0_RpoygaZSF6heeWwIDQgaP0varUdSK1pzjeJZRjM8,9
|
|
104
|
+
sqlframe-1.10.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|