Package io.trino.sql.analyzer
Class Analysis.ResolvedWindow
- java.lang.Object
-
- io.trino.sql.analyzer.Analysis.ResolvedWindow
-
-
Constructor Summary
Constructors Constructor Description ResolvedWindow(List<Expression> partitionBy, Optional<OrderBy> orderBy, Optional<WindowFrame> frame, boolean partitionByInherited, boolean orderByInherited, boolean frameInherited)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Optional<WindowFrame>getFrame()Optional<OrderBy>getOrderBy()List<Expression>getPartitionBy()booleanisFrameInherited()booleanisOrderByInherited()booleanisPartitionByInherited()
-
-
-
Constructor Detail
-
ResolvedWindow
public ResolvedWindow(List<Expression> partitionBy, Optional<OrderBy> orderBy, Optional<WindowFrame> frame, boolean partitionByInherited, boolean orderByInherited, boolean frameInherited)
-
-
Method Detail
-
getPartitionBy
public List<Expression> getPartitionBy()
-
getFrame
public Optional<WindowFrame> getFrame()
-
isPartitionByInherited
public boolean isPartitionByInherited()
-
isOrderByInherited
public boolean isOrderByInherited()
-
isFrameInherited
public boolean isFrameInherited()
-
-