From d5d4b4785bbae26a07cd479184a09d91c79e9fef Mon Sep 17 00:00:00 2001 From: Nong Li Date: Fri, 7 Feb 2014 10:09:00 -0800 Subject: [PATCH] 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 Tested-by: jenkins --- .../workloads/functional-query/queries/QueryTest/udf.test | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testdata/workloads/functional-query/queries/QueryTest/udf.test b/testdata/workloads/functional-query/queries/QueryTest/udf.test index 7828ef083..7cac169b7 100644 --- a/testdata/workloads/functional-query/queries/QueryTest/udf.test +++ b/testdata/workloads/functional-query/queries/QueryTest/udf.test @@ -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