timsaucer commented on issue #513:
URL: 
https://github.com/apache/datafusion-python/issues/513#issuecomment-2521811665

   I just tried a quick proof of concept. To get this to work, I did need a 
name for the table. Would the following be an acceptable solution?
   
   ```
   from datafusion import SessionContext
   ctx = SessionContext()
   ctx.register_parquet("customers", "examples/tpch/data/customer.parquet")
   ctx.sql("select c_custkey, c_name from {df}", df=df_customer)
   ```


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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to