You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 7, 2025. It is now read-only.
Don't get dissuaded by the nr of changed lines, there's almost nothing
happening here.
`(Date)_range` and `filters` are basically the same aggregation. I
recently improved `filters` a bit, but didn't do anything to
`(date)_range`.
This PR makes all those combinators work in the same way, so there are
two issues left - #971
(easier) and #944 (a bit
harder). Afterwards they will all fully work.
areNewPancakesReallyNeeded:=len(pancake.layers) >1// if there is only one layer above combinator, it easily can be done with 1 pancake, no need for more
445
+
groups:=combinator.CombinatorGroups()
446
+
if!areNewPancakesReallyNeeded||len(groups) ==0 {
437
447
return
438
448
}
439
449
440
-
// First create N-1 new pancakes, each with different filter
441
-
fori:=1; i<len(filters.Filters); i++ {
450
+
combinatorSplit:=combinator.CombinatorSplit()
451
+
combinatorGroups:=combinator.CombinatorGroups()
452
+
// First create N-1 new pancakes [1...N), each with different filter
453
+
// (important to update the first (0th) pancake at the end)
0 commit comments