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
In contrast to other commands/query plan nodes, ROW a= 1, a = 2 creates 2 attributes with the same name a; this is a problem because one cannot refer to any of the as as there's no way to disambiguate.
Let's fix this and ensure all our query plans consistently handle multiple created attributes with the same name, like EVAL x = 1, x = 2 (or dissect, enrich, ...)
The text was updated successfully, but these errors were encountered:
Relates #110490
In contrast to other commands/query plan nodes,
ROW a= 1, a = 2
creates 2 attributes with the same namea
; this is a problem because one cannot refer to any of thea
s as there's no way to disambiguate.Let's fix this and ensure all our query plans consistently handle multiple created attributes with the same name, like
EVAL x = 1, x = 2
(or dissect, enrich, ...)The text was updated successfully, but these errors were encountered: