Kontinuation commented on code in PR #92:
URL: https://github.com/apache/sedona-db/pull/92#discussion_r2353087163
##########
python/sedonadb/python/sedonadb/dataframe.py:
##########
@@ -361,6 +361,55 @@ def show(
width = _out_width(width)
print(self._impl.show(self._ctx, limit, width, ascii), end="")
+ def explain(
+ self,
+ verbose: bool = False,
+ analyze: bool = False,
Review Comment:
Shall we replace these 2 parameters with a `type` parameter with the
following possible values?
* "standard": verbose = False, analyze = False
* "analyze": verbose = False, analyze = True
* "extended": verbose = True, analyze = False (this shows how optimization
rules have changed the query plan over optimization passes)
--
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]