kawadakk opened a new issue, #8614:
URL: https://github.com/apache/arrow-datafusion/issues/8614

   ### Describe the bug
   
   `$0` (#5856) does not cause a panic anymore but `$00` still does.
   
   ### To Reproduce
   
   ```rust
   // test $00 placeholder
   let schema = Schema::new(vec![Field::new("id", DataType::Int32, false)]);
   
   let plan = table_scan(TableReference::none(), &schema, None)
       .unwrap()
       .filter(col("id").eq(placeholder("$00")))
       .unwrap()
       .build()
       .unwrap();
   
   plan.replace_params_with_values(&param_values.into())
       .expect_err("unexpectedly succeeded to replace an invalid placeholder");
   ```
   
   ### Expected behavior
   
   Not panicking
   
   ### Additional context
   
   _No response_


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to