diff --git a/python/python/lance/dataset.py b/python/python/lance/dataset.py index c182b56c95d..08116488996 100644 --- a/python/python/lance/dataset.py +++ b/python/python/lance/dataset.py @@ -3575,24 +3575,6 @@ def to_stream_reader(self) -> pa.RecordBatchReader: """ return self._query.to_stream_reader() - def explain_plan(self, verbose: bool = False, analyze: bool = False) -> str: - """ - Explain the query plan. - - Parameters - ---------- - verbose: bool, default False - If True, print the verbose plan. - analyze: bool, default False - If True, analyze the query and print the statistics. - - Returns - ------- - str - The query plan. - """ - return self._query.explain_plan(verbose, analyze) - class SqlQueryBuilder: """