public class SqlNumericLiteral extends SqlLiteral
SqlLiteral.SqlSymbolvalueEMPTY_ARRAY, pos| Modifier | Constructor and Description |
|---|---|
protected |
SqlNumericLiteral(BigDecimal value,
Integer prec,
Integer scale,
boolean isExact,
SqlParserPos pos) |
| Modifier and Type | Method and Description |
|---|---|
SqlNode |
clone(SqlParserPos pos)
Clones a SqlNode with a different position.
|
RelDataType |
createSqlType(RelDataTypeFactory typeFactory) |
Integer |
getPrec() |
Integer |
getScale() |
boolean |
isExact() |
boolean |
isInteger() |
String |
toValue()
For calc program builder - value may be different than
SqlLiteral.unparse(org.apache.calcite.sql.SqlWriter, int, int)
Typical values:
Hello, world!
12.34
{null}
1969-04-29
|
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, createExactNumeric, createInterval, createNegative, createNull, createSample, createSymbol, createTime, createTimestamp, createUnknown, equals, equalsDeep, getKind, getMonotonicity, getStringValue, getTypeName, getValue, hashCode, intValue, longValue, sampleValue, signum, stringValue, symbolValue, unchain, unescapeUnicode, validate, valueMatchesTypeclone, cloneArray, equalDeep, equalDeep, findValidOptions, getParserPosition, isA, toSqlString, toSqlString, toString, validateExprprotected SqlNumericLiteral(BigDecimal value, Integer prec, Integer scale, boolean isExact, SqlParserPos pos)
public Integer getPrec()
public Integer getScale()
public boolean isExact()
public SqlNode clone(SqlParserPos pos)
SqlNodeclone in class SqlLiteralpublic void unparse(SqlWriter writer, int leftPrec, int rightPrec)
SqlNodeThe 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 SqlLiteralwriter - 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 String toValue()
SqlLiteralSqlLiteral.unparse(org.apache.calcite.sql.SqlWriter, int, int)
Typical values:
toValue in class SqlLiteralpublic RelDataType createSqlType(RelDataTypeFactory typeFactory)
createSqlType in class SqlLiteralpublic boolean isInteger()
Copyright © 2012–2015 The Apache Software Foundation. All rights reserved.