mirror of
https://github.com/apache/impala.git
synced 2025-12-30 12:02:10 -05:00
Additionally, this patch also disabled the hbase/none test dimension if the TARGET_FILESYSTEM environment variable is set to either s3 of isilon. Change-Id: I63aecaa478d2ba9eb68de729e9640071359a2eeb Reviewed-on: http://gerrit.cloudera.org:8080/74 Reviewed-by: Dan Hecht <dhecht@cloudera.com> Tested-by: Internal Jenkins
15 lines
452 B
Plaintext
15 lines
452 B
Plaintext
====
|
|
---- QUERY
|
|
# limit 0 on hbase table
|
|
select * from alltypessmall where string_col = '4' limit 0
|
|
---- RESULTS
|
|
---- TYPES
|
|
int, bigint, boolean, string, double, float, int, int, smallint, string, timestamp, tinyint, int
|
|
====
|
|
---- QUERY
|
|
# limit 0 with arithmetic expr
|
|
select * from alltypessmall where string_col = '4' limit 3 % 3
|
|
---- RESULTS
|
|
---- TYPES
|
|
int, bigint, boolean, string, double, float, int, int, smallint, string, timestamp, tinyint, int
|