You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Rahul Challapalli (JIRA)" <ji...@apache.org> on 2017/02/02 23:17:51 UTC

[jira] [Created] (DRILL-5239) Drill text reader reports wrong results when column value starts with '#'

Rahul Challapalli created DRILL-5239:
----------------------------------------

             Summary: Drill text reader reports wrong results when column value starts with '#'
                 Key: DRILL-5239
                 URL: https://issues.apache.org/jira/browse/DRILL-5239
             Project: Apache Drill
          Issue Type: Bug
          Components: Storage - Text & CSV
    Affects Versions: 1.10.0
            Reporter: Rahul Challapalli
            Priority: Blocker


git.commit.id.abbrev=2af709f

Data Set :
{code}
D|32
8h|234
;#|3489
^$*(|308
#|98
{code}

Wrong Result : (Last row is missing)
{code}
select columns[0] as col1, columns[1] as col2 from dfs.`/drill/testdata/wtf2.tbl`;
+-------+-------+
| col1  | col2  |
+-------+-------+
| D     | 32    |
| 8h    | 234   |
| ;#    | 3489  |
| ^$*(  | 308   |
+-------+-------+
4 rows selected (0.233 seconds)
{code}

The issue does not however happen with a parquet file



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)