You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Chris Westin (JIRA)" <ji...@apache.org> on 2015/07/01 21:22:04 UTC

[jira] [Updated] (DRILL-3226) Upper and lower casing doesn't work correctly on non-ASCII characters

     [ https://issues.apache.org/jira/browse/DRILL-3226?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Chris Westin updated DRILL-3226:
--------------------------------
    Fix Version/s: Future

> Upper and lower casing doesn't work correctly on non-ASCII characters
> ---------------------------------------------------------------------
>
>                 Key: DRILL-3226
>                 URL: https://issues.apache.org/jira/browse/DRILL-3226
>             Project: Apache Drill
>          Issue Type: Bug
>          Components: Execution - Data Types
>            Reporter: Ted Dunning
>            Assignee: Daniel Barclay (Drill)
>             Fix For: Future
>
>
> {code}
> 0: jdbc:drill:zk=local> select z, lower(z), upper(z) from dfs.root.`/Users/tdunning/tmp/data.json`;
> +------+---------+---------+
> |  z   | EXPR$1  | EXPR$2  |
> +------+---------+---------+
> | åäö  | åäö     | åäö     |
> | aBc  | abc     | ABC     |
> +------+---------+---------+
> {code}
> Expected result would be
> {code}
> +------+---------+---------+
> |  z   | EXPR$1  | EXPR$2  |
> +------+---------+---------+
> | åäö  | åäö     | ÅÄÖ     |
> | aBc  | abc     | ABC     |
> +------+---------+---------+
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)