aboutsummaryrefslogtreecommitdiff
path: root/docs/sql-programming-guide.md
diff options
context:
space:
mode:
authorDaniel Darabos <darabos.daniel@gmail.com>2016-09-17 12:28:42 +0100
committerSean Owen <sowen@cloudera.com>2016-09-17 12:28:42 +0100
commit69cb0496974737347e2650cda436b39bbd51e581 (patch)
tree05532e84b6123b1c205cebb69388138fece56879 /docs/sql-programming-guide.md
parent39e2bad6a866d27c3ca594d15e574a1da3ee84cc (diff)
downloadspark-69cb0496974737347e2650cda436b39bbd51e581.tar.gz
spark-69cb0496974737347e2650cda436b39bbd51e581.tar.bz2
spark-69cb0496974737347e2650cda436b39bbd51e581.zip
Correct fetchsize property name in docs
## What changes were proposed in this pull request? Replace `fetchSize` with `fetchsize` in the docs. ## How was this patch tested? I manually tested `fetchSize` and `fetchsize`. The latter has an effect. See also [`JdbcUtils.scala#L38`](https://github.com/apache/spark/blob/v2.0.0/sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/jdbc/JdbcUtils.scala#L38) for the definition of the property. Author: Daniel Darabos <darabos.daniel@gmail.com> Closes #14975 from darabos/patch-3.
Diffstat (limited to 'docs/sql-programming-guide.md')
-rw-r--r--docs/sql-programming-guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/sql-programming-guide.md b/docs/sql-programming-guide.md
index 28cc88c322..4ac5fae566 100644
--- a/docs/sql-programming-guide.md
+++ b/docs/sql-programming-guide.md
@@ -1053,7 +1053,7 @@ the Data Sources API. The following options are supported:
</tr>
<tr>
- <td><code>fetchSize</code></td>
+ <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>