paleolimbot opened a new pull request, #106:
URL: https://github.com/apache/sedona-db/pull/106
Previously we had global options, however, the way we had structured the
`sedona.db` import resulted in the options being completely inaccessible (i.e.,
`sedona.db.options.interactive = True` didn't work!).
This PR scopes the options to the context, which is probably better anyway
because the `sd` object is the one most people are interacting with anyway.
```python
import sedona.db
sd = sedona.db.connect()
sd.options.interactive = True
sd.sql("SELECT 1")
#> ┌──────────┐
#> │ Int64(1) │
#> │ int64 │
#> ╞══════════╡
#> │ 1 │
#> └──────────┘
```
--
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]