Package io.trino.spi.connector
Class ConstraintApplicationResult<T>
- java.lang.Object
-
- io.trino.spi.connector.ConstraintApplicationResult<T>
-
public class ConstraintApplicationResult<T> extends Object
-
-
Constructor Summary
Constructors Constructor Description ConstraintApplicationResult(T handle, TupleDomain<ColumnHandle> remainingFilter, boolean precalculateStatistics)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
getHandle()
TupleDomain<ColumnHandle>
getRemainingFilter()
boolean
isPrecalculateStatistics()
-
-
-
Constructor Detail
-
ConstraintApplicationResult
public ConstraintApplicationResult(T handle, TupleDomain<ColumnHandle> remainingFilter, boolean precalculateStatistics)
- Parameters:
precalculateStatistics
- Indicates whether engine should consider calculating statistics based on the plan before pushdown, as the connector may be unable to provide good table statistics forhandle
.
-
-
Method Detail
-
getHandle
public T getHandle()
-
getRemainingFilter
public TupleDomain<ColumnHandle> getRemainingFilter()
-
isPrecalculateStatistics
public boolean isPrecalculateStatistics()
-
-