Package org.apache.calcite.sql
Enum TableCharacteristic.Semantics
- All Implemented Interfaces:
Serializable
,Comparable<TableCharacteristic.Semantics>
,Constable
- Enclosing class:
TableCharacteristic
Input table has either row semantics or set semantics.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static TableCharacteristic.Semantics[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ROW
Row semantics means that the result of the Window TableFunction is decided on a row-by-row basis. As an extreme example, the DBMS could atomize the input table into individual rows, and send each single row to a different virtual processor. -
SET
Set semantics means that the outcome of the Window TableFunction depends on how the data is partitioned. A partition may not be split across virtual processors, nor may a virtual processor handle more than one partition.
-
-
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
-