Skip to content

Commit 0c4db0a

Browse files
committed
fix(cubesql): Depend on a proper flag for grouped join part
1 parent 673be86 commit 0c4db0a

File tree

1 file changed

+2
-3
lines changed
  • rust/cubesql/cubesql/src/compile/rewrite/rules/wrapper

1 file changed

+2
-3
lines changed

rust/cubesql/cubesql/src/compile/rewrite/rules/wrapper/join.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,12 @@ impl WrapperRules {
6464
wrapper_replacer_context(
6565
// Going to ignore this
6666
"?right_alias_to_cube",
67-
// TODO depend on proper "ungrouped scan" flag (that is not a push-to-cube)
68-
"WrapperReplacerContextPushToCube:false",
67+
"?right_push_to_cube",
6968
"?in_projection",
7069
// Going to ignore this
7170
"?right_cube_members",
7271
"?right_grouped_subqueries",
73-
"?right_ungrouped_scan",
72+
"WrapperReplacerContextUngroupedScan:false",
7473
),
7574
),
7675
"CubeScanWrapperFinalized:false",

0 commit comments

Comments
 (0)