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
Copy file name to clipboardExpand all lines: x-pack/plugin/esql-core/src/main/java/org/elasticsearch/xpack/esql/core/expression/UnresolvedAttribute.java
+10-1Lines changed: 10 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,16 @@
19
19
importjava.util.List;
20
20
importjava.util.Objects;
21
21
22
-
// unfortunately we can't use UnresolvedNamedExpression
22
+
/**
23
+
* An unresolved attribute. We build these while walking the syntax
24
+
* tree and then resolve them into other {@link Attribute} subclasses during
25
+
* analysis.
26
+
* <p>
27
+
* For example, if they reference the data directly from lucene they'll be
28
+
* {@link FieldAttribute}s. If they reference the results of another calculation
0 commit comments