You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "alamb (via GitHub)" <gi...@apache.org> on 2023/12/01 20:37:02 UTC

Re: [I] Consider introducing unique expression IDs in Logical/Physical plan [arrow-datafusion]

alamb commented on issue #8379:
URL: https://github.com/apache/arrow-datafusion/issues/8379#issuecomment-1836743922

   I wonder what "unique" means ? Like every newly created `Expr` gets some sort of id? 
   
   Some examples:
   
   ```rust
   // would expr1 and expr2 have the same id?
   let expr1 = col("foo");
   let expr2 = col("foo");
   ```
   
   
   ```rust
   // would expr1 and expr2 have the same id?
   let expr1 = col("foo");
   let expr2 = expr1.clone()
   ```
   


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org