Files
impala/testdata/workloads/functional-query/queries/QueryTest/hdfs-text-scan.test
Juan Yu e121bc9b0a IMPALA-1476: Impala incorrectly handles text data missing a newline on the last line.
I did a local benchmark and there's minimal performance impact(<1%)

Change-Id: I8d84a145acad886c52587258b27d33cff96ea399
(cherry picked from commit 7e750ad5d90007cc85ebe493af4dce7a537ad7c0)
Reviewed-on: http://gerrit.cloudera.org:8080/189
Reviewed-by: Juan Yu <jyu@cloudera.com>
Tested-by: Internal Jenkins
2015-03-20 19:58:50 -07:00

15 lines
200 B
Plaintext

---- QUERY
select count(*) from functional.table_no_newline
---- RESULTS
5
---- TYPES
BIGINT
====
---- QUERY
select count(col_3) from functional.table_no_newline
---- RESULTS
5
---- TYPES
BIGINT
====