You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by so...@apache.org on 2019/01/11 17:03:40 UTC

[drill] 02/04: DRILL-6928: Update description for exec.query.return_result_set_for_ddl option to reflect it affects JDBC connections only closes #1601

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

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

commit e76d1e2702e87d3ab01feab9ffe231f87af957ab
Author: Bohdan Kazydub <bo...@gmail.com>
AuthorDate: Tue Jan 8 14:17:17 2019 +0200

    DRILL-6928: Update description for exec.query.return_result_set_for_ddl option to reflect it affects JDBC connections only
    closes #1601
---
 .../java-exec/src/main/java/org/apache/drill/exec/ExecConstants.java | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

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 a0376a4..811c479 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
@@ -902,6 +902,7 @@ public final class ExecConstants {
 
   public static final String RETURN_RESULT_SET_FOR_DDL = "exec.query.return_result_set_for_ddl";
   public static final BooleanValidator RETURN_RESULT_SET_FOR_DDL_VALIDATOR = new BooleanValidator(RETURN_RESULT_SET_FOR_DDL,
-      new OptionDescription("Controls whether to return result set for CREATE TABLE / VIEW, DROP TABLE / VIEW, SET, USE etc. queries. " +
-          "If set to false affected rows count will be returned instead and result set will be null. Default is true. (Drill 1.15+)"));
+      new OptionDescription("Controls whether to return result set for CREATE TABLE / VIEW / FUNCTION, DROP TABLE / VIEW / FUNCTION, " +
+          "SET, USE, REFRESH METADATA TABLE queries. If set to false affected rows count will be returned instead and result set will be null. " +
+          "Affects JDBC connections only. Default is true. (Drill 1.15+)"));
 }