Hi all,
I wrote a simple SerDe to deserialize CSV files defined as external table.

The CSV files contain a header with columns names.

I would like to skip the header while executing select * from my table.
Example:
CSV file content:
a,b,c
1,2,3
4,5,6

select * from my_table;
should return:
1,2,3
4,5,6

Is there a hook to make the framework to skip a specific line ?
I'd appreciate your advise. Using Hive 0.11.0.

Thanks,
Lior

Reply via email to