mirror of
https://github.com/apache/impala.git
synced 2026-01-06 06:01:03 -05:00
Update the rows read counter after processing the scan range instead of updating it after reading every row for sequence files to save CPU cycles. Change-Id: Ie42c97a36e46172884cc497aa645036c2c11f541 Reviewed-on: http://gerrit.cloudera.org:8080/6522 Reviewed-by: Bharath Vissapragada <bharathv@cloudera.com> Tested-by: Impala Public Jenkins
9 lines
185 B
Plaintext
9 lines
185 B
Plaintext
====
|
|
---- QUERY
|
|
# This query will do a full table scan to count the num of rows
|
|
# read during a scan
|
|
select * from alltypesagg
|
|
---- RUNTIME_PROFILE
|
|
row_regex: .*RowsRead: 11.00K .
|
|
====
|