We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27148c2 commit f243989Copy full SHA for f243989
1 file changed
crates/integrations/datafusion/src/physical_plan/expr_to_predicate.rs
@@ -225,6 +225,7 @@ fn to_iceberg_operation(op: Operator) -> OpTransformedResult {
225
/// identified by name at runtime, so we need to handle them here.
226
fn scalar_function_to_iceberg_predicate(func_name: &str, args: &[Expr]) -> TransformedResult {
227
match func_name {
228
+ // TODO: support complex expression arguments to scalar functions
229
"isnan" if args.len() == 1 => {
230
let operand = to_iceberg_predicate(&args[0]);
231
match operand {
0 commit comments