You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by kr...@apache.org on 2016/01/15 15:50:16 UTC

drill git commit: Jacques' simplification

Repository: drill
Updated Branches:
  refs/heads/gh-pages 84fe034e2 -> 1aff00ea4


Jacques' simplification


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

Branch: refs/heads/gh-pages
Commit: 1aff00ea4a97bba1b547b6b0d8a15e4aa90f8d57
Parents: 84fe034
Author: Kris Hahn <kr...@apache.org>
Authored: Fri Jan 15 06:49:01 2016 -0800
Committer: Kris Hahn <kr...@apache.org>
Committed: Fri Jan 15 06:50:15 2016 -0800

----------------------------------------------------------------------
 .../010-develop-custom-functions-introduction.md         | 11 ++---------
 1 file changed, 2 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/drill/blob/1aff00ea/_docs/develop-custom-functions/010-develop-custom-functions-introduction.md
----------------------------------------------------------------------
diff --git a/_docs/develop-custom-functions/010-develop-custom-functions-introduction.md b/_docs/develop-custom-functions/010-develop-custom-functions-introduction.md
index 7bb6cf5..c6d9671 100644
--- a/_docs/develop-custom-functions/010-develop-custom-functions-introduction.md
+++ b/_docs/develop-custom-functions/010-develop-custom-functions-introduction.md
@@ -1,6 +1,6 @@
 ---
 title: "Develop Custom Functions Introduction"
-date: 2016-01-14
+date: 2016-01-15
 parent: "Develop Custom Functions"
 ---
 Drill provides a high performance Java API with interfaces that you can
@@ -37,14 +37,7 @@ complete the following tasks:
 
   1. Create a Java program that implements Drill’s simple or aggregate interface.
   2. Add the following code to the drill-module.conf in your UDF project (src/main/resources/drill-module.conf). Replace com.yourgroupidentifier.udf with the package name(s) of your UDFs.  
-
-           drill {
-             classpath.scanning {
-               packages : ${?drill.classpath.scanning.packages} [
-                 com.yourgroupidentifier.udf
-               ]
-             }
-           }   
+           drill.classpath.scanning.packages += "com.yourgroupidentifier.udf"
 
   3. Compile the UDF and place both jar files (source + binary) in the Drill classpath on all the Drillbits.  
   4. Ensure that DRILL_HOME/conf/drill-override.conf does not contain any information regarding UDF packages.