You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by go...@apache.org on 2016/03/25 08:19:53 UTC

hive git commit: HIVE-13307: LLAP: Slider package should contain permanent functions (addendum)

Repository: hive
Updated Branches:
  refs/heads/master 4fabd038c -> b1c45029e


HIVE-13307: LLAP: Slider package should contain permanent functions (addendum)


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/b1c45029
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/b1c45029
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/b1c45029

Branch: refs/heads/master
Commit: b1c45029ed3652eda9db6650da38ba653d4ada93
Parents: 4fabd03
Author: Gopal V <go...@apache.org>
Authored: Fri Mar 25 00:18:44 2016 -0700
Committer: Gopal V <go...@apache.org>
Committed: Fri Mar 25 00:19:35 2016 -0700

----------------------------------------------------------------------
 ql/src/test/queries/clientpositive/llap_udf.q | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/b1c45029/ql/src/test/queries/clientpositive/llap_udf.q
----------------------------------------------------------------------
diff --git a/ql/src/test/queries/clientpositive/llap_udf.q b/ql/src/test/queries/clientpositive/llap_udf.q
index c964f2b..2224bd5 100644
--- a/ql/src/test/queries/clientpositive/llap_udf.q
+++ b/ql/src/test/queries/clientpositive/llap_udf.q
@@ -3,7 +3,7 @@ set hive.explain.user=false;
 set hive.execution.mode=llap;
 set hive.llap.execution.mode=all;
 set hive.fetch.task.conversion=none;
-set hive.llap.daemon.allow.permanent.fns=true;
+set hive.llap.allow.permanent.fns=true;
 
 drop table if exists src_orc;
 create table src_orc stored as orc as select * from src;
@@ -37,11 +37,11 @@ DROP FUNCTION test_udf4;
 EXPLAIN
 SELECT test_udf0(cast(key as string)) from src_orc;
 
-set hive.llap.daemon.allow.permanent.fns=false;
+set hive.llap.allow.permanent.fns=false;
 
 EXPLAIN
 SELECT test_udf3(cast(key as string)) from src_orc;
 
 
 drop table if exists src_orc;
-set hive.execution.mode=container;
\ No newline at end of file
+set hive.execution.mode=container;