milenkovicm commented on PR #1088:
URL: 
https://github.com/apache/datafusion-ballista/pull/1088#issuecomment-2423657641

   did a quick test for python support
   
   ```python
   from datafusion.context import SessionContext
   from pyballista import Ballista
   
   # this makes most of the ballista python code redundant 
   ctx : SessionContext = Ballista.standalone()
   
   df = ctx.sql("SELECT 1")
   batches = df.collect()
   batches.show()
   
   df = ctx.sql("SHOW TABLES").show()
   ctx.register_parquet("p", "testdata/test.parquet")
   
   ctx.sql("select * from p").show()
   ctx.sql("select name, value from information_schema.df_settings where name 
like 'ballista%'").show()
   ```


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