Files
impala/testdata/workloads/functional-query/queries/QueryTest/uda.test
Nong Li 904289d168 Add UDA execution.
Change-Id: Ie5aab79742675fc62ed731c13abe83304df80991
Reviewed-on: http://gerrit.ent.cloudera.com:8080/642
Tested-by: jenkins
Reviewed-by: Nong Li <nong@cloudera.com>
2014-01-08 10:53:24 -08:00

23 lines
347 B
Plaintext

====
---- QUERY
select uda_test.hll(int_col) from functional.alltypestiny;
---- TYPES
string
---- RESULTS
'2'
====
---- QUERY
select uda_test.test_count(int_col) from functional.alltypestiny;
---- TYPES
bigint
---- RESULTS
8
====
---- QUERY
select uda_test.test_count(int_col) from functional.alltypesagg;
---- TYPES
bigint
---- RESULTS
9990
====