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

   > Also, when are we allowed to skip ?table?
   
   When the reference is not ambiguous (aka when there is only a single table 
that has a column with that name in the relevant output)
   
   As @Jefffrey  mentioned I think the actual fix to you problem is to change
   
   ```rust
   let df = df.select_columns(&["key", "size", "last_modified"])?;
   ```
   
   to 
   
   ```rust
   let df = df.select_columns(&["key", "size", "last_modified_date"])?;
   ```
   
   The fact that there is a `?Table?` in the message seems somewhat misleading
   


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