Package org.apache.calcite.sql
Class SqlAbstractDateTimeLiteral
java.lang.Object
org.apache.calcite.sql.SqlNode
org.apache.calcite.sql.SqlLiteral
org.apache.calcite.sql.SqlAbstractDateTimeLiteral
- All Implemented Interfaces:
Cloneable
- Direct Known Subclasses:
SqlDateLiteral,SqlTimeLiteral,SqlTimestampLiteral,SqlTimestampTzLiteral,SqlTimeTzLiteral
A SQL literal representing a DATE, TIME or TIMESTAMP value.
Examples:
- DATE '2004-10-22'
- TIME '14:33:44.567'
TIMESTAMP '1969-07-21 03:15 GMT'
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.calcite.sql.SqlLiteral
SqlLiteral.SqlSymbol -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final booleanprotected final intFields inherited from class org.apache.calcite.sql.SqlLiteral
valueFields inherited from class org.apache.calcite.sql.SqlNode
EMPTY_ARRAY, pos -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedSqlAbstractDateTimeLiteral(Object d, boolean tz, SqlTypeName typeName, int precision, SqlParserPos pos) Constructs a datetime literal. -
Method Summary
Modifier and TypeMethodDescriptioncreateSqlType(RelDataTypeFactory typeFactory) intgetPrec()Converts this literal to aTimestampString.abstract StringReturns e.g.abstract StringtoString()Returns e.g.voidWrites a SQL representation of this node to a writer.Methods inherited from class org.apache.calcite.sql.SqlLiteral
accept, bigDecimalValue, booleanValue, clone, createApproxNumeric, createBinaryString, createBinaryString, createBoolean, createCharString, createCharString, createDate, createDate, createExactNumeric, createInterval, createNegative, createNull, createSample, createSymbol, createTime, createTime, createTime, createTimestamp, createTimestamp, createTimestamp, createTimestamp, createUnknown, createUnknown, createUuid, equals, equalsDeep, getKind, getMonotonicity, getStringValue, getTypeName, getValue, getValueAs, hashCode, intValue, longValue, sampleValue, signum, stringValue, symbolValue, symbolValue_, toValue, unchain, unescapeUnicode, validate, value, valueMatchesTypeMethods inherited from class org.apache.calcite.sql.SqlNode
clone, clone, cloneArray, equalDeep, equalDeep, equalsDeep, findValidOptions, getParserPosition, isA, toList, toList, toSqlString, toSqlString, toSqlString, unparseWithParentheses, validateExpr
-
Field Details
-
hasTimeZone
protected final boolean hasTimeZone -
precision
protected final int precision
-
-
Constructor Details
-
SqlAbstractDateTimeLiteral
protected SqlAbstractDateTimeLiteral(Object d, boolean tz, SqlTypeName typeName, int precision, SqlParserPos pos) Constructs a datetime literal.
-
-
Method Details
-
getTimestamp
Converts this literal to aTimestampString. -
getPrec
public int getPrec() -
toString
Returns e.g.DATE '1969-07-21'. -
toFormattedString
Returns e.g.1969-07-21. -
createSqlType
- Overrides:
createSqlTypein classSqlLiteral
-
unparse
Description copied from class:SqlNodeWrites a SQL representation of this node to a writer.The
leftPrecandrightPrecparameters give us enough context to decide whether we need to enclose the expression in parentheses. For example, we need parentheses around "2 + 3" if preceded by "5 *". This is because the precedence of the "*" operator is greater than the precedence of the "+" operator.The algorithm handles left- and right-associative operators by giving them slightly different left- and right-precedence.
If
SqlWriter.isAlwaysUseParentheses()is true, we use parentheses even when they are not required by the precedence rules.For the details of this algorithm, see
SqlCall.unparse(org.apache.calcite.sql.SqlWriter, int, int).- Overrides:
unparsein classSqlLiteral- Parameters:
writer- Target writerleftPrec- The precedence of theSqlNodeimmediately preceding this node in a depth-first scan of the parse treerightPrec- The precedence of theSqlNodeimmediately
-