This is an automated email from the ASF dual-hosted git repository.

hmaduri pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git

commit f7ed58fc97bbf0c684891e07bf5132e055efb1d9
Author: Kunal Khatua <[email protected]>
AuthorDate: Fri Jan 4 16:35:46 2019 -0800

    DRILL-6941: Incorrect EARLY_LIMIT0_OPT_KEY description
    
    Description was accidentally duplicated from 
`planner.parser.quoting_identifiers`
    closes #1597
---
 exec/java-exec/src/main/java/org/apache/drill/exec/ExecConstants.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/exec/java-exec/src/main/java/org/apache/drill/exec/ExecConstants.java 
b/exec/java-exec/src/main/java/org/apache/drill/exec/ExecConstants.java
index 6285068..a0376a4 100644
--- a/exec/java-exec/src/main/java/org/apache/drill/exec/ExecConstants.java
+++ b/exec/java-exec/src/main/java/org/apache/drill/exec/ExecConstants.java
@@ -567,7 +567,7 @@ public final class ExecConstants {
 
   public static final String EARLY_LIMIT0_OPT_KEY = 
"planner.enable_limit0_optimization";
   public static final BooleanValidator EARLY_LIMIT0_OPT = new 
BooleanValidator(EARLY_LIMIT0_OPT_KEY,
-      new OptionDescription("Sets the type of identifier quotes for the SQL 
parser. Default is backticks ('`'). The SQL parser accepts double quotes ('\"') 
and square brackets ('['). (Drill 1.11+)"));
+      new OptionDescription("Enables the query planner to determine data types 
returned by a query during the planning phase before scanning data. Default is 
true. (Drill 1.9+)"));
 
   public static final String LATE_LIMIT0_OPT_KEY = 
"planner.enable_limit0_on_scan";
   public static final BooleanValidator LATE_LIMIT0_OPT = new 
BooleanValidator(LATE_LIMIT0_OPT_KEY,

Reply via email to