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

   ### Is your feature request related to a problem or challenge?
   
   Currently, `datafusion-substrait` will return an error if there is a join 
relation in the logical plan with filter field that's not `None`.
   
   To replicate:
   ```Rust
   #[tokio::test]
   async fn roundtrip_non_equi_inner_join() -> Result<()> {
       roundtrip("SELECT data.a FROM data JOIN data2 ON data.a <> 
data2.a").await
   }
   // ---- tests::roundtrip_non_equi_inner_join stdout ----
   // Error: NotImplemented("join filter")
   ```
   
   
   
   ### Describe the solution you'd like
   
   Correctly handle the case where join filter is not empty.
   
   ### Describe alternatives you've considered
   
   N/A
   
   ### Additional context
   
   The filter will be `Some(_)` for non-equi joins.


-- 
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