Fix broken udf test case. Should not specify DB.

Change-Id: I5f6343cbef9f52d349130360e029b38b23d0187a
Reviewed-on: http://gerrit.ent.cloudera.com:8080/1505
Reviewed-by: Nong Li <nong@cloudera.com>
Tested-by: jenkins
This commit is contained in:
Nong Li
2014-02-07 10:09:00 -08:00
committed by jenkins
parent 1a55133f0a
commit d5d4b4785b

View File

@@ -354,14 +354,14 @@ tinyint, int, double
# Test UDFs that are evaluated in the planner (doesn't take cols as input)
# and returns a string.
---- QUERY
select count(*) from functional.alltypessmall where udf_test.No_Args() = 'string'
select count(*) from functional.alltypessmall where No_Args() = 'string'
---- TYPES
BIGINT
---- RESULTS
100
====
---- QUERY
select count(*) from functional.alltypessmall where udf_test.No_Args() != 'string'
select count(*) from functional.alltypessmall where No_Args() != 'string'
---- TYPES
BIGINT
---- RESULTS