Skip to content

Commit 4bc9314

Browse files
authored
feat(sql): add option to enable/disable select merging (#9065)
Add a global option to enable or disable merging select statements where possible. This can serve as an escape route if the optimization fails. It is currently enabled by default, we may change to make it opt-in. xref #9064 and #9058 Closes #9058.
1 parent 4506513 commit 4bc9314

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

ibis/backends/sql/compiler.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
rewrite_capitalize,
2828
sqlize,
2929
)
30+
from ibis.config import options
3031
from ibis.expr.operations.udf import InputType
3132
from ibis.expr.rewrites import replace_bucket
3233

@@ -453,7 +454,12 @@ def translate(self, op, *, params: Mapping[ir.Value, Any]) -> sge.Expression:
453454
# substitute parameters immediately to avoid having to define a
454455
# ScalarParameter translation rule
455456
params = self._prepare_params(params)
456-
op, ctes = sqlize(op, params=params, rewrites=self.rewrites)
457+
op, ctes = sqlize(
458+
op,
459+
params=params,
460+
rewrites=self.rewrites,
461+
fuse_selects=options.sql.fuse_selects,
462+
)
457463

458464
aliases = {}
459465
counter = itertools.count()

ibis/backends/sql/rewrites.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ def sqlize(
208208
node: ops.Node,
209209
params: Mapping[ops.ScalarParameter, Any],
210210
rewrites: Sequence[Pattern] = (),
211+
fuse_selects: bool = True,
211212
) -> tuple[ops.Node, list[ops.Node]]:
212213
"""Lower the ibis expression graph to a SQL-like relational algebra.
213214
@@ -219,6 +220,8 @@ def sqlize(
219220
A mapping of scalar parameters to their values.
220221
rewrites
221222
Supplementary rewrites to apply to the expression graph.
223+
fuse_selects
224+
Whether to merge subsequent Select nodes into one where possible.
222225
223226
Returns
224227
-------
@@ -243,7 +246,10 @@ def sqlize(
243246
)
244247

245248
# squash subsequent Select nodes into one
246-
simplified = sqlized.replace(merge_select_select)
249+
if fuse_selects:
250+
simplified = sqlized.replace(merge_select_select)
251+
else:
252+
simplified = sqlized
247253

248254
# extract common table expressions while wrapping them in a CTE node
249255
ctes = frozenset(extract_ctes(simplified))

ibis/config.py

+4
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ class SQL(Config):
4747
4848
Attributes
4949
----------
50+
fuse_selects : bool
51+
Whether to fuse consecutive select queries into a single query where
52+
possible.
5053
default_limit : int | None
5154
Number of rows to be retrieved for a table expression without an
5255
explicit limit. [](`None`) means no limit.
@@ -55,6 +58,7 @@ class SQL(Config):
5558
5659
"""
5760

61+
fuse_selects: bool = True
5862
default_limit: Optional[PosInt] = None
5963
default_dialect: str = "duckdb"
6064

0 commit comments

Comments
 (0)