Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion native-engine/datafusion-ext-functions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ log = { workspace = true }
num = { workspace = true }
paste = { workspace = true }
serde_json = { workspace = true }
sonic-rs = { workspace = true }
sonic-rs = { workspace = true }
2 changes: 2 additions & 0 deletions native-engine/datafusion-ext-functions/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ mod spark_make_array;
mod spark_make_decimal;
mod spark_normalize_nan_and_zero;
mod spark_null_if;
mod spark_round;
mod spark_sha2;
mod spark_strings;
mod spark_unscaled_value;
Expand Down Expand Up @@ -60,6 +61,7 @@ pub fn create_spark_ext_function(name: &str) -> Result<ScalarFunctionImplementat
"Month" => Arc::new(spark_dates::spark_month),
"Day" => Arc::new(spark_dates::spark_day),
"BrickhouseArrayUnion" => Arc::new(brickhouse::array_union::array_union),
"Round" => Arc::new(spark_round::spark_round),
"NormalizeNanAndZero" => {
Arc::new(spark_normalize_nan_and_zero::spark_normalize_nan_and_zero)
}
Expand Down
Loading