You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@impala.apache.org by "Tim Armstrong (JIRA)" <ji...@apache.org> on 2019/04/26 05:55:00 UTC

[jira] [Created] (IMPALA-8463) skip.header.line.count ignored on local catalog

Tim Armstrong created IMPALA-8463:
-------------------------------------

             Summary: skip.header.line.count ignored on local catalog
                 Key: IMPALA-8463
                 URL: https://issues.apache.org/jira/browse/IMPALA-8463
             Project: IMPALA
          Issue Type: Bug
          Components: Catalog
    Affects Versions: Impala 3.2.0, Impala 3.1.0, Impala 3.3.0
            Reporter: Tim Armstrong
            Assignee: Tim Armstrong


test_text_scanner_with_header() fails when run against local catalog.

{noformat}
[tarmstrong-box2.ca.cloudera.com:21000] functional> select c1, c2 from table_with_header
                                                  > ;
Query: select c1, c2 from table_with_header
Query submitted at: 2019-04-25 22:47:52 (Coordinator: http://2c766e5e2187:25000)
Query progress can be monitored at: http://2c766e5e2187:25000/query_plan?query_id=68403d93ac914925:394ee6a100000000
+------+------+
| c1   | c2   |
+------+------+
| 5    | 6    |
| 1    | 2    |
| 3    | 4    |
| NULL | NULL |
+------+------+
WARNINGS: Error converting column: 0 to INT
Error converting column: 1 to DOUBLE
Error parsing row: file: hdfs://172.19.0.1:20500/test-warehouse/table_with_header/table_with_header.csv, before offset: 22
{noformat}

This is suspicious in LocalFsTable.java
{code}
  @Override
  public int parseSkipHeaderLineCount(StringBuilder error) {
    // TODO Auto-generated method stub
    return 0;
  }
{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)