mirror of
https://github.com/apache/impala.git
synced 2025-12-19 18:12:08 -05:00
Separate the Hbase and Kudu tables used in test_resource_limits to their own files so they are skippable in environments where those services are not used. Change-Id: I02d9fd0b48817f755e1eee2ae4613e2089fa1973 Reviewed-on: http://gerrit.cloudera.org:8080/11221 Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com> Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
14 lines
324 B
Plaintext
14 lines
324 B
Plaintext
====
|
|
---- QUERY
|
|
# Bytes limit enforced for HBase.
|
|
# Add a sleep to slow down query and avoid race with bytes check.
|
|
set SCAN_BYTES_LIMIT="1k";
|
|
select count(*)
|
|
from (
|
|
select distinct *
|
|
from functional_hbase.alltypesagg
|
|
where sleep(100) = id) v
|
|
---- CATCH
|
|
row_regex:.*terminated due to scan bytes limit of 1.00 K.*
|
|
====
|