-
Notifications
You must be signed in to change notification settings - Fork 29k
Correct fetchsize property name in docs #14975
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Property is defined at JdbcUtils.scala#L38.
|
+1. There are other occurrences of "FetchSize" or "fetchSize" in the code, though none will matter for users (i.e. test names). But feel free to fix them. |
Good point! I'll update the pull request next week. (Sorry for the delay.) |
|
@darabos do you want to close this out or should I do the update? |
Sorry! I'll try to do it tonight. If I don't report back, consider me eaten by a monster. |
Done. |
|
Test build #3278 has finished for PR 14975 at commit
|
|
Merged to master/2.0 |
## 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. (cherry picked from commit 69cb049) Signed-off-by: Sean Owen <sowen@cloudera.com>
## 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 apache#14975 from darabos/patch-3.
What changes were proposed in this pull request?
Replace
fetchSizewithfetchsizein the docs.How was this patch tested?
I manually tested
fetchSizeandfetchsize. The latter has an effect. See alsoJdbcUtils.scala#L38for the definition of the property.