Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SNOW-1888076: built-in function support wave1 #2928

Merged
merged 12 commits into from
Jan 28, 2025
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,21 @@
- `regr_sxy`
- `regr_syy`
- `try_to_binary`
- `base64`
- `base64_decode_string`
- `base64_encode`
- `editdistance`
- `hex`
- `hex_encode`
- `instr`
- `log1p`
- `log2`
- `log10`
- `percentile_approx`
- `unbase64`
- Added support for specifying a schema string (including implicit struct syntax) when calling `DataFrame.create_dataframe`.
- Added support for `DataFrameWriter.insert_into/insertInto`. This method also supports local testing mode.
- Added support for multiple columns in the functions `map_cat` and `map_concat`.

#### Experimental Features

Expand Down
12 changes: 12 additions & 0 deletions docs/source/snowpark/functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ Functions
atanh
atan2
avg
base64
base64_decode_string
base64_encode
bit_length
bitmap_bit_position
bitmap_bucket_number
Expand Down Expand Up @@ -157,6 +160,7 @@ Functions
desc_nulls_last
div0
divnull
editdistance
endswith
equal_nan
equal_null
Expand All @@ -178,12 +182,15 @@ Functions
grouping
grouping_id
hash
hex
hex_encode
hour
iff
ifnull
in_
initcap
insert
instr
is_array
is_binary
is_boolean
Expand Down Expand Up @@ -217,6 +224,9 @@ Functions
locate
localtimestamp
log
log1p
log2
log10
lower
lpad
ltrim
Expand Down Expand Up @@ -257,6 +267,7 @@ Functions
parse_json
parse_xml
percent_rank
percentile_approx
percentile_cont
position
pow
Expand Down Expand Up @@ -350,6 +361,7 @@ Functions
udaf
udf
udtf
unbase64
uniform
unix_timestamp
upper
Expand Down
Loading
Loading