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
The problematic case is field("p", FanType.FanOut).nest(concat(field("c1"), field("c2"))) because this normalizes to concat(field("p", FanType.FanOut).nest(field("c1")), field("p", FanType.FanOut).nest(field("c2"))), which introduces a cross-product where there wasn't one.
The text was updated successfully, but these errors were encountered:
The problematic case is
field("p", FanType.FanOut).nest(concat(field("c1"), field("c2")))
because this normalizes toconcat(field("p", FanType.FanOut).nest(field("c1")), field("p", FanType.FanOut).nest(field("c2")))
, which introduces a cross-product where there wasn't one.The text was updated successfully, but these errors were encountered: