You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@drill.apache.org by "Ted Dunning (JIRA)" <ji...@apache.org> on 2015/05/31 13:39:17 UTC

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

Ted Dunning created DRILL-3226:
----------------------------------

             Summary: 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
            Reporter: Ted Dunning


{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)