Package io.trino.sql.tree
Class WindowOperation
- java.lang.Object
-
- io.trino.sql.tree.Node
-
- io.trino.sql.tree.Expression
-
- io.trino.sql.tree.WindowOperation
-
public class WindowOperation extends Expression
Represents a call over a window:classifier OVER (...)There are two types of window calls supported in Trino: - function calls - row pattern measures This class captures row pattern measures only. A function call over a window is represented as `FunctionCall` having a `Window` member. // TODO refactor `FunctionCall` so that it does not contain `Window`, and instead represent a windowed function call as `WindowOperation`
-
-
Constructor Summary
Constructors Constructor Description WindowOperation(Identifier name, Window window)WindowOperation(NodeLocation location, Identifier name, Window window)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R,C>
Raccept(AstVisitor<R,C> visitor, C context)Accessible forAstVisitor, useAstVisitor.process(Node, Object)instead.booleanequals(Object obj)List<Node>getChildren()IdentifiergetName()WindowgetWindow()inthashCode()booleanshallowEquals(Node other)Compare with another node by considering internal state excluding any Node returned by getChildren()-
Methods inherited from class io.trino.sql.tree.Expression
toString
-
Methods inherited from class io.trino.sql.tree.Node
getLocation
-
-
-
-
Constructor Detail
-
WindowOperation
public WindowOperation(Identifier name, Window window)
-
WindowOperation
public WindowOperation(NodeLocation location, Identifier name, Window window)
-
-
Method Detail
-
getName
public Identifier getName()
-
getWindow
public Window getWindow()
-
accept
public <R,C> R accept(AstVisitor<R,C> visitor, C context)
Description copied from class:ExpressionAccessible forAstVisitor, useAstVisitor.process(Node, Object)instead.- Overrides:
acceptin classExpression
-
getChildren
public List<Node> getChildren()
- Specified by:
getChildrenin classNode
-
shallowEquals
public boolean shallowEquals(Node other)
Description copied from class:NodeCompare with another node by considering internal state excluding any Node returned by getChildren()- Overrides:
shallowEqualsin classNode
-
-