Package com.clickhouse.client
Class ClickHouseResponseSummary.Statistics
- java.lang.Object
-
- com.clickhouse.client.ClickHouseResponseSummary.Statistics
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- ClickHouseResponseSummary
public static class ClickHouseResponseSummary.Statistics extends Object implements Serializable
Statistics of a query.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Statistics(long rows, long blocks, long allocated_bytes, boolean applied_limit, long rows_before_limit)Default constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetAllocatedBytes()longgetBlocks()longgetRows()longgetRowsBeforeLimit()booleanhasAppliedLimit()
-
-
-
Constructor Detail
-
Statistics
public Statistics(long rows, long blocks, long allocated_bytes, boolean applied_limit, long rows_before_limit)Default constructor.- Parameters:
rows- The total number of output rowsblocks-allocated_bytes-applied_limit-rows_before_limit- The minimal number of rows there would have been without LIMIT
-
-