Enum ScanStats.GroupScanProperty
java.lang.Object
java.lang.Enum<ScanStats.GroupScanProperty>
org.apache.drill.exec.physical.base.ScanStats.GroupScanProperty
- All Implemented Interfaces:
Serializable
,Comparable<ScanStats.GroupScanProperty>
- Enclosing class:
- ScanStats
-
Enum Constant Summary
Enum ConstantDescriptionTells the planner to consider the full cost represented here. -
Method Summary
Modifier and TypeMethodDescriptionboolean
boolean
boolean
static ScanStats.GroupScanProperty
Returns the enum constant of this type with the specified name.static ScanStats.GroupScanProperty[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NO_EXACT_ROW_COUNT
-
EXACT_ROW_COUNT
-
ESTIMATED_TOTAL_COST
Tells the planner to consider the full cost represented here. Else, the planner only looks at row count. However, we don't know the actual row count, a COUNT(*) query must still look at the input source if it wants an accurate count.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
hasExactRowCount
public boolean hasExactRowCount() -
hasExactColumnValueCount
public boolean hasExactColumnValueCount() -
hasFullCost
public boolean hasFullCost()
-