public class SqlIntervalLiteral extends SqlLiteral
Examples:
YEAR/MONTH intervals are not implemented yet.
The interval string, such as '1:00:05.345', is not parsed yet.
Modifier and Type | Class and Description |
---|---|
static class |
SqlIntervalLiteral.IntervalValue
A Interval value.
|
SqlLiteral.SqlSymbol
value
EMPTY_ARRAY, pos
Modifier | Constructor and Description |
---|---|
protected |
SqlIntervalLiteral(int sign,
String intervalStr,
SqlIntervalQualifier intervalQualifier,
SqlTypeName sqlTypeName,
SqlParserPos pos) |
Modifier and Type | Method and Description |
---|---|
SqlIntervalLiteral |
clone(SqlParserPos pos)
Clones a SqlNode with a different position.
|
int |
signum()
Returns sign of value.
|
void |
unparse(SqlWriter writer,
int leftPrec,
int rightPrec)
Writes a SQL representation of this node to a writer.
|
accept, bigDecimalValue, booleanValue, createApproxNumeric, createBinaryString, createBinaryString, createBoolean, createCharString, createCharString, createDate, createDate, createExactNumeric, createInterval, createNegative, createNull, createSample, createSqlType, createSymbol, createTime, createTime, createTimestamp, createTimestamp, createUnknown, equals, equalsDeep, getKind, getMonotonicity, getStringValue, getTypeName, getValue, getValueAs, hashCode, intValue, longValue, sampleValue, stringValue, symbolValue_, symbolValue, toValue, unchain, unescapeUnicode, validate, value, valueMatchesType
clone, clone, cloneArray, equalDeep, equalDeep, equalsDeep, findValidOptions, getParserPosition, isA, toList, toList, toSqlString, toSqlString, toSqlString, toString, unparseWithParentheses, validateExpr
protected SqlIntervalLiteral(int sign, String intervalStr, SqlIntervalQualifier intervalQualifier, SqlTypeName sqlTypeName, SqlParserPos pos)
public SqlIntervalLiteral clone(SqlParserPos pos)
SqlNode
clone
in class SqlLiteral
public void unparse(SqlWriter writer, int leftPrec, int rightPrec)
SqlNode
The leftPrec
and rightPrec
parameters 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)
.
unparse
in class SqlLiteral
writer
- Target writerleftPrec
- The precedence of the SqlNode
immediately
preceding this node in a depth-first scan of the parse
treerightPrec
- The precedence of the SqlNode
immediatelypublic int signum()
SqlLiteral
signum
in class SqlLiteral
Copyright © 2012-2020 Apache Software Foundation. All Rights Reserved.