Package io.trino.spi.connector
Class BasicRelationStatistics
java.lang.Object
io.trino.spi.connector.BasicRelationStatistics
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondoubleReturns estimated data size.doubleReturns estimated row count.
-
Constructor Details
-
BasicRelationStatistics
public BasicRelationStatistics(long rowCount, long dataSize)
-
-
Method Details
-
getRowCount
public double getRowCount()Returns estimated row count. It is guaranteed that returned value will not be NaN. -
getDataSize
public double getDataSize()Returns estimated data size. It is guaranteed that returned value will not be NaN.
-