Skip to content

Commit 3b29cb9

Browse files
authored
Revert "chore: [1941-Part1]: Introduce map_sort scalar function (#2262)" (#2381)
This reverts commit f2baf95.
1 parent fbc80ac commit 3b29cb9

File tree

5 files changed

+4
-832
lines changed

5 files changed

+4
-832
lines changed

native/spark-expr/src/comet_scalar_funcs.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
// under the License.
1717

1818
use crate::hash_funcs::*;
19-
use crate::map_funcs::spark_map_sort;
2019
use crate::math_funcs::checked_arithmetic::{checked_add, checked_div, checked_mul, checked_sub};
2120
use crate::math_funcs::modulo_expr::spark_modulo;
2221
use crate::{
@@ -158,10 +157,6 @@ pub fn create_comet_physical_fun(
158157
let fail_on_error = fail_on_error.unwrap_or(false);
159158
make_comet_scalar_udf!("spark_modulo", func, without data_type, fail_on_error)
160159
}
161-
"map_sort" => {
162-
let func = Arc::new(spark_map_sort);
163-
make_comet_scalar_udf!("spark_map_sort", func, without data_type)
164-
}
165160
_ => registry.udf(fun_name).map_err(|e| {
166161
DataFusionError::Execution(format!(
167162
"Function {fun_name} not found in the registry: {e}",

native/spark-expr/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ pub use bloom_filter::{BloomFilterAgg, BloomFilterMightContain};
5555

5656
mod conditional_funcs;
5757
mod conversion_funcs;
58-
mod map_funcs;
5958
mod math_funcs;
6059
mod nondetermenistic_funcs;
6160

0 commit comments

Comments
 (0)