Package org.apache.calcite.sql
Interface SqlLiteral.SqlSymbol
- Enclosing class:
SqlLiteral
Deprecated.
A value must implement this interface if it is to be embedded as a
SqlLiteral of type SYMBOL. If the class is an
Enum
it trivially
implements this interface.
The SqlNode.toString()
method should return how the symbol should be
unparsed, which is sometimes not the same as the enumerated value's name
(e.g. "UNBOUNDED PRECEDING" versus "UnboundedPreceeding").
-
Method Summary
-
Method Details
-
name
String name()Deprecated. -
ordinal
int ordinal()Deprecated.
-