Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8d0ef0c

Browse files
committedMar 29, 2025·
format
1 parent 2e8ab86 commit 8d0ef0c

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed
 

‎python/datafusion/__init__.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
except ImportError:
2727
import importlib_metadata
2828

29-
from . import functions, object_store, substrait
29+
from . import functions, object_store, substrait, unparser
3030

3131
# The following imports are okay to remain as opaque to the user.
3232
from ._internal import Config
@@ -49,7 +49,6 @@
4949
from .plan import ExecutionPlan, LogicalPlan
5050
from .record_batch import RecordBatch, RecordBatchStream
5151
from .udf import Accumulator, AggregateUDF, ScalarUDF, WindowUDF, udaf, udf, udwf
52-
from .unparser import Dialect, Unparser
5352

5453
__version__ = importlib_metadata.version(__name__)
5554

@@ -61,7 +60,6 @@
6160
"DFSchema",
6261
"DataFrame",
6362
"Database",
64-
"Dialect",
6563
"ExecutionPlan",
6664
"Expr",
6765
"LogicalPlan",
@@ -73,7 +71,6 @@
7371
"SessionConfig",
7472
"SessionContext",
7573
"Table",
76-
"Unparser",
7774
"WindowFrame",
7875
"WindowUDF",
7976
"col",
@@ -92,6 +89,7 @@
9289
"udaf",
9390
"udf",
9491
"udwf",
92+
"unparser",
9593
]
9694

9795

‎python/datafusion/unparser.py

+10
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ def __init__(self, dialect: unparser_internal.Dialect) -> None:
3131
"""This constructor is not typically called by the end user."""
3232
self.dialect = dialect
3333

34+
@staticmethod
35+
def default() -> "Dialect":
36+
"""Create a new default dialect."""
37+
return Dialect(unparser_internal.Dialect.default())
38+
3439
@staticmethod
3540
def mysql() -> "Dialect":
3641
"""Create a new MySQL dialect."""
@@ -63,6 +68,11 @@ def plan_to_sql(self, plan: LogicalPlan) -> str:
6368
"""Convert a logical plan to a SQL string."""
6469
return self.unparser.plan_to_sql(plan._raw_plan)
6570

71+
def with_pretty(self, pretty: bool) -> "Unparser":
72+
"""Set the pretty flag."""
73+
self.unparser = self.unparser.with_pretty(pretty)
74+
return self
75+
6676

6777
__all__ = [
6878
"Dialect",

0 commit comments

Comments
 (0)
Please sign in to comment.