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

[GitHub] [arrow-datafusion] elbaro commented on issue #5187: Dataframe API adds ?table? qualifier

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

   ```rs
   let df = df.select(vec![
           col("?table?.key").alias("key"),
           col("?table?.size").alias("size"),
           col("?table?.last_modified").alias("last_modified"),
       ])?;
   ```
   
   ```
   Error: Schema error: No field named '?table?.key'. Valid fields are '?table?'.'key', '?table?'.'size',
   ..
   ```
   
   Also tried `col("'?table?'.'key'").alias("key"),`


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