aboutsummaryrefslogtreecommitdiff
path: root/exec
diff options
context:
space:
mode:
authorBohdan Kazydub <bohdan.kazydub@gmail.com>2019-01-08 14:17:17 +0200
committerSorabh Hamirwasia <sorabh@apache.org>2019-01-10 10:30:50 -0800
commite76d1e2702e87d3ab01feab9ffe231f87af957ab (patch)
tree72bc07f67a0bd97538f86c709d2b596bbcfe9b9d /exec
parent4b66226dc7e33d9173e6e714d5cf85beea1e4e46 (diff)
DRILL-6928: Update description for exec.query.return_result_set_for_ddl option to reflect it affects JDBC connections only
closes #1601
Diffstat (limited to 'exec')
-rw-r--r--exec/java-exec/src/main/java/org/apache/drill/exec/ExecConstants.java5
1 files 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 a0376a4c5..811c4791e 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+)"));
}