Repository: spark Updated Branches: refs/heads/branch-2.1 9a49f9afa -> 445438c9f
[SPARK-19396][DOC] JDBC Options are Case In-sensitive ### What changes were proposed in this pull request? The case are not sensitive in JDBC options, after the PR https://github.com/apache/spark/pull/15884 is merged to Spark 2.1. ### How was this patch tested? N/A Author: gatorsmile <[email protected]> Closes #16734 from gatorsmile/fixDocCaseInsensitive. (cherry picked from commit c0eda7e87fe06c5ec8d146829e25f3627f18c529) Signed-off-by: gatorsmile <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/445438c9 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/445438c9 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/445438c9 Branch: refs/heads/branch-2.1 Commit: 445438c9f485489f22a1c4b9ec2644a7a9426d9b Parents: 9a49f9a Author: gatorsmile <[email protected]> Authored: Mon Jan 30 14:05:53 2017 -0800 Committer: gatorsmile <[email protected]> Committed: Mon Jan 30 14:06:07 2017 -0800 ---------------------------------------------------------------------- docs/sql-programming-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/445438c9/docs/sql-programming-guide.md ---------------------------------------------------------------------- diff --git a/docs/sql-programming-guide.md b/docs/sql-programming-guide.md index ffe0f39..55ed913 100644 --- a/docs/sql-programming-guide.md +++ b/docs/sql-programming-guide.md @@ -1091,7 +1091,7 @@ Tables from the remote database can be loaded as a DataFrame or Spark SQL tempor the Data Sources API. Users can specify the JDBC connection properties in the data source options. <code>user</code> and <code>password</code> are normally provided as connection properties for logging into the data sources. In addition to the connection properties, Spark also supports -the following case-sensitive options: +the following case-insensitive options: <table class="table"> <tr><th>Property Name</th><th>Meaning</th></tr> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
