You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Dudu Markovitz (JIRA)" <ji...@apache.org> on 2016/04/02 09:51:25 UTC

[jira] [Created] (HIVE-13412) External table - fields terminated by '\u0044' - 0044 is being interpreted as decimal and not hex

Dudu Markovitz created HIVE-13412:
-------------------------------------

             Summary: External table -  fields terminated by '\u0044' - 0044 is being interpreted as decimal and not hex
                 Key: HIVE-13412
                 URL: https://issues.apache.org/jira/browse/HIVE-13412
             Project: Hive
          Issue Type: Bug
          Components: Parser
    Affects Versions: 0.14.0
            Reporter: Dudu Markovitz
            Assignee: Pengcheng Xiong


, (comma) as the decimal value of '44' and hex value of '2c'
In the following example I'm using  '\u0044' as delimiter which is being interpreted as comma.

hive> create external table test_delimiter_dec_unicode (c1 int,c2 int,c3 int) row format delimited fields terminated by '\u0044';
OK
Time taken: 0.035 seconds
hive> show create table test_delimiter_dec_unicode;
OK
CREATE EXTERNAL TABLE `test_delimiter_dec_unicode`(
  `c1` int,
  `c2` int,
  `c3` int)
ROW FORMAT DELIMITED
  FIELDS TERMINATED BY ','
...




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