[ 
https://issues.apache.org/jira/browse/IMPALA-14912?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=18096905#comment-18096905
 ] 

ASF subversion and git services commented on IMPALA-14912:
----------------------------------------------------------

Commit ecc7381315bb7098fca0b6d8a0fa0af8093f4b3b in impala's branch 
refs/heads/master from Steve Carlin
[ https://gitbox.apache.org/repos/asf?p=impala.git;h=ecc738131 ]

IMPALA-14912: Calcite Planner: Fix date string parsing

This commit fixes parsing for the following date strings SQL
select DATE '1999-01-01';
select DATE "1999-01-01";

This essentially reverts an earlier fix, IMPALA-13525, which was
way more complicated than it needed to be. The Impala StringLiteral
already handles escaped strings, so there is no need to remove the
escapes within the Calcite parser.  The changes in Parser.jj reflect
the major part of the reversion, as well as removing the ParserUtil.java
file.

A change also had to be made in the ImpalaRexExecutor where the constant
folding was done. This completes the UTF-8 constant folding commit for
the Calcite Planner (IMPALA-10349)

One more change was made with the unhex function. Unhex can return a
non-UTF8 string. Impala can handle this in a StringLiteral, but Calcite
cannot. Because of this, the constant folding for unhex when the string
is non-UTF8 is done at physical node creation time rather than during
the optimization phase.

Change-Id: Ia08071193f86423a0e548c6b6690993afdad6272
Reviewed-on: http://gerrit.cloudera.org:8080/24218
Reviewed-by: Aman Sinha <[email protected]>
Tested-by: Impala Public Jenkins <[email protected]>


> Calcite planner: select DATE '<date'> is not parsing
> ----------------------------------------------------
>
>                 Key: IMPALA-14912
>                 URL: https://issues.apache.org/jira/browse/IMPALA-14912
>             Project: IMPALA
>          Issue Type: Sub-task
>            Reporter: Steve Carlin
>            Assignee: Steve Carlin
>            Priority: Major
>
> Also with double quotes is not parsing, e.g. select DATE "1999-01-01" 



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to