We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5584aaa commit e69a05bCopy full SHA for e69a05b
x-pack/plugin/esql-core/src/main/java/org/elasticsearch/xpack/esql/core/expression/function/Function.java
@@ -17,8 +17,8 @@
17
import java.util.StringJoiner;
18
19
/**
20
- * Any SQL expression with parentheses, like {@code MAX()}, or {@code ABS()}. A
21
- * function is always a {@code NamedExpression}.
+ * Any ESQL function; generally this is translated into a computation to be evaluated on arguments, including scalar functions (e.g. in
+ * {@code EVAL}) or aggregation functions ({@code STATS}).
22
*/
23
public abstract class Function extends Expression {
24
0 commit comments