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

Liam De Lee updated HIVE-19943:
-------------------------------
    Description: 
We are using the tblproperties ("skip.header.line.count"="1") when creating an 
external table.

When we do a select * from table we get it back as expected without the header 
present in the result set.

However when we do for instance a count(1) we get the header back in this count 
(tested with a select * from table and paste it in notepad to find the amount 
of rows)

If we also do this with a select distinct(column) from table we also get the 
header as a distinct value.

file structure:
||_TESTING_TYPE||
|adf|
|hyg|
|abc|

 

*Update: 26/06/2018*
{code:java}
-----------------------------------
--sap_0bill_typea--
-----------------------------------
CREATE EXTERNAL TABLE IF NOT EXISTS ext.test_type_in
  (
    test_type      string
    )
ROW FORMAT DELIMITED
FIELDS TERMINATED BY '\073'
STORED AS TEXTFILE
LOCATION 'adl://{adlslocation}data/data2/test'
tblproperties ("skip.header.line.count"="1")
{code}
 

  was:
We are using the tblproperties ("skip.header.line.count"="1") when creating an 
external table.

When we do a select * from table we get it back as expected without the header 
present in the result set.

However when we do for instance a count(1) we get the header back in this count 
(tested with a select * from table and paste it in notepad to find the amount 
of rows)

If we also do this with a select distinct(column) from table we also get the 
header as a distinct value.

file structure:
||_TESTING_TYPE||
|adf|
|hyg|
|abc|


> Header values keep showing up in result sets
> --------------------------------------------
>
>                 Key: HIVE-19943
>                 URL: https://issues.apache.org/jira/browse/HIVE-19943
>             Project: Hive
>          Issue Type: Bug
>          Components: Query Processor
>    Affects Versions: 2.1.0
>         Environment: Hdinsight Hive interactivequerry
> [Components|https://docs.microsoft.com/en-us/azure/hdinsight/hdinsight-component-versioning#hadoop-components-available-with-different-hdinsight-versions]
>            Reporter: Liam De Lee
>            Priority: Major
>
> We are using the tblproperties ("skip.header.line.count"="1") when creating 
> an external table.
> When we do a select * from table we get it back as expected without the 
> header present in the result set.
> However when we do for instance a count(1) we get the header back in this 
> count (tested with a select * from table and paste it in notepad to find the 
> amount of rows)
> If we also do this with a select distinct(column) from table we also get the 
> header as a distinct value.
> file structure:
> ||_TESTING_TYPE||
> |adf|
> |hyg|
> |abc|
>  
> *Update: 26/06/2018*
> {code:java}
> -----------------------------------
> --sap_0bill_typea--
> -----------------------------------
> CREATE EXTERNAL TABLE IF NOT EXISTS ext.test_type_in
>   (
>     test_type      string
>     )
> ROW FORMAT DELIMITED
> FIELDS TERMINATED BY '\073'
> STORED AS TEXTFILE
> LOCATION 'adl://{adlslocation}data/data2/test'
> tblproperties ("skip.header.line.count"="1")
> {code}
>  



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

Reply via email to