mirror of
https://github.com/apache/impala.git
synced 2026-01-05 21:00:54 -05:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user