[
https://issues.apache.org/jira/browse/HIVE-22511?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16978807#comment-16978807
]
Hive QA commented on HIVE-22511:
--------------------------------
Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12986347/HIVE-22511.01.patch
{color:green}SUCCESS:{color} +1 due to 1 test(s) being added or modified.
{color:green}SUCCESS:{color} +1 due to 17709 tests passed
Test results:
https://builds.apache.org/job/PreCommit-HIVE-Build/19516/testReport
Console output: https://builds.apache.org/job/PreCommit-HIVE-Build/19516/console
Test logs: http://104.198.109.242/logs/PreCommit-HIVE-Build-19516/
Messages:
{noformat}
Executing org.apache.hive.ptest.execution.TestCheckPhase
Executing org.apache.hive.ptest.execution.PrepPhase
Executing org.apache.hive.ptest.execution.YetusPhase
Executing org.apache.hive.ptest.execution.ExecutionPhase
Executing org.apache.hive.ptest.execution.ReportingPhase
{noformat}
This message is automatically generated.
ATTACHMENT ID: 12986347 - PreCommit-HIVE-Build
> Fix case of Month token in datetime to string conversion
> --------------------------------------------------------
>
> Key: HIVE-22511
> URL: https://issues.apache.org/jira/browse/HIVE-22511
> Project: Hive
> Issue Type: Bug
> Reporter: Gabor Kaszab
> Assignee: Karen Coppage
> Priority: Major
> Attachments: HIVE-22511.01.patch
>
>
> Currently Hive doesn't allow month tokens with weird spelling like 'MONth',
> 'mONTH' etc. However, Oracle does and Hive should follow that approach.
> The rules:
> - If the first letter is lowercase then the output is lowercase: 'mONTH' ->
> 'may'
> - If the first two letters are uppercase then the output is uppercase:
> 'MOnth' -> 'MAY'
> - If the first letter is uppercase and the second is lowercase then the
> output is capitalized: 'Month' -> 'May'.
> Oracle:
> {code:java}
> select to_char(to_timestamp('2019-05-10', 'YYYY-MM-DD'), 'MOnthYYYY') from
> DUAL;
> MAY 2019
> select to_char(to_timestamp('2019-05-10', 'YYYY-MM-DD'), 'mONTHYYYY') from
> DUAL;
> may 2019
> select to_char(to_timestamp('2019-05-10', 'YYYY-MM-DD'), 'MoNTHYYYY') from
> DUAL;
> May 2019
> {code}
> Please check the same for 'Name of the day' tokens.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)