Github user jacques-n commented on a diff in the pull request:

    https://github.com/apache/drill/pull/291#discussion_r46698458
  
    --- Diff: 
_docs/develop-custom-functions/025-tutorial-develop-a-simple-function.md ---
    @@ -203,7 +203,19 @@ For simplicity, use maven to build your project in a 
pom.xml file as follows:
     ```
     
     ## Add a drill-module.conf File to Resources
    -Add a `drill-module.conf` file in the resources folder of your project. 
The presence of this file tells Drill that your jar contains a custom function. 
If you have no specific configuration to set for your function, you can keep 
this file empty.
    +Add a `drill-module.conf` file in the resources folder of your project. 
The presence of this file tells Drill that your jar contains a custom function. 
This file should contains the name of the package where your function is 
located.
    +
    +The file should look like:
    +
    +```
    +drill {
    +  classpath.scanning {
    +    packages : ${?drill.classpath.scanning.packages} [
    +      org.apache.drill.contrib.function
    +    ]
    +  }
    +}
    --- End diff --
    
    I think that this may be simpler for people (and equivalent):
    
    drill.classpath.scanning.packages +=  org.apache.drill.contrib.function



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to