aboutsummaryrefslogtreecommitdiff
path: root/docs/sql-programming-guide.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/sql-programming-guide.md')
-rw-r--r--docs/sql-programming-guide.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/sql-programming-guide.md b/docs/sql-programming-guide.md
index e347754055..d7b205c2fa 100644
--- a/docs/sql-programming-guide.md
+++ b/docs/sql-programming-guide.md
@@ -1820,6 +1820,7 @@ the Data Sources API. The following options are supported:
register itself with the JDBC subsystem.
</td>
</tr>
+
<tr>
<td><code>partitionColumn, lowerBound, upperBound, numPartitions</code></td>
<td>
@@ -1831,6 +1832,13 @@ the Data Sources API. The following options are supported:
partitioned and returned.
</td>
</tr>
+
+ <tr>
+ <td><code>fetchSize</code></td>
+ <td>
+ The JDBC fetch size, which determines how many rows to fetch per round trip. This can help performance on JDBC drivers which default to low fetch size (eg. Oracle with 10 rows).
+ </td>
+ </tr>
</table>
<div class="codetabs">