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: [email protected]

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

Reply via email to