Skip to content

Commit f243989

Browse files
chore: add TODO for complex expression support in pushdown
1 parent 27148c2 commit f243989

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

crates/integrations/datafusion/src/physical_plan/expr_to_predicate.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@ fn to_iceberg_operation(op: Operator) -> OpTransformedResult {
225225
/// identified by name at runtime, so we need to handle them here.
226226
fn scalar_function_to_iceberg_predicate(func_name: &str, args: &[Expr]) -> TransformedResult {
227227
match func_name {
228+
// TODO: support complex expression arguments to scalar functions
228229
"isnan" if args.len() == 1 => {
229230
let operand = to_iceberg_predicate(&args[0]);
230231
match operand {

0 commit comments

Comments
 (0)