MrPowers opened a new issue, #111:
URL: https://github.com/apache/sedona-db/issues/111

   I am currently writing code like this:
   
   ```python
   cities.to_view("cities", overwrite=True)
   countries.to_view("countries", overwrite=True)
   
   sd.sql("""
   select * from cities
   join countries
   where ST_Intersects(cities.geometry, countries.geometry)
   """).show()
   ```
   
   This could be cool to skip the explicit view registration:
   
   ```python
   sd.sql("""
   select * from cities
   join countries
   where ST_Intersects(cities.geometry, countries.geometry)
   """, cities=cities, countries=countries).show()
   ```
   
   It would be especially sweet if other objects (like dates & Shapely objects) 
could be parameterized too!


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