Files
impala/testdata/workloads/functional-query/queries/QueryTest/query-resource-limits-hbase.test
Michael Brown cddb35be92 IMPALA-7445: separate skippable tables from test_resource_limits
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>
2018-08-15 04:15:46 +00:00

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.*
====