Implement decimal literals in CMISQL parser
-------------------------------------------
Key: CMIS-160
URL: https://issues.apache.org/jira/browse/CMIS-160
Project: Chemistry
Issue Type: Bug
Components: chemistry-commons
Reporter: Florent Guillaume
Assignee: Florent Guillaume
We must implement the missing:
<signed numeric literal> ::= !! As defined by SQL-92 grammar.
That is:
<signed numeric literal> ::= [ <sign> ] <unsigned numeric literal>
<unsigned numeric literal> ::= <exact numeric literal> | <approximate
numeric literal>
<exact numeric literal> ::= <unsigned integer> [ <period> [ <unsigned
integer> ] ] | <period> <unsigned integer>
<sign> ::= <plus sign> | <minus sign>
<approximate numeric literal> ::= <mantissa> E <exponent>
<mantissa> ::= <exact numeric literal>
<exponent> ::= <signed integer>
<signed integer> ::= [ <sign> ] <unsigned integer>
<unsigned integer> ::= <digit>...
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.