Skip to content

Commit 9e2e122

Browse files
PLUGIN-1290: removing hive jdbc from plugin tooltips and markdown
1 parent 730bd31 commit 9e2e122

2 files changed

Lines changed: 4 additions & 8 deletions

File tree

docs/MultiTableDatabase-batchsource.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,8 @@ DynamicMultiFileset.
2121

2222
**JDBC Plugin Name**: The name of the JDBC plugin to use.
2323

24-
**Enable Auto Commit**: Whether to enable auto commit for queries run by this source. Defaults to false.
25-
This setting should only matter if you are using a jdbc driver that does not support a false value for
26-
auto commit, or a driver that does not support the commit call. For example, the Hive jdbc driver will throw
27-
an exception whenever a commit is called. For drivers like that, this should be set to true.
24+
**Enable Auto Commit**: Whether to enable auto-commit for queries run by this source. In most cases, set to false.
25+
If you use a JDBC driver that results in an error when the commit operation is run, set to 'true'.
2826

2927
**Data Selection Mode**: The operation mode for this plugin. There are 3 possible values:
3028

src/main/java/io/cdap/plugin/format/MultiTableConf.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,8 @@ public class MultiTableConf extends PluginConfig {
7878

7979
@Macro
8080
@Nullable
81-
@Description("Whether to enable auto commit for queries run by this source. Defaults to false. " +
82-
"This setting should only matter if you are using a jdbc driver that does not support a false value for " +
83-
"auto commit, or a driver that does not support the commit call. For example, the Hive jdbc driver will throw " +
84-
"an exception whenever a commit is called. For drivers like that, this should be set to true.")
81+
@Description("Whether to enable auto-commit for queries run by this source. In most cases, set to false.\n" +
82+
"If you use a JDBC driver that results in an error when the commit operation is run, set to 'true'.")
8583
private Boolean enableAutoCommit;
8684

8785
@Nullable

0 commit comments

Comments
 (0)