Repository: spark
Updated Branches:
  refs/heads/master fbb267ed6 -> 9213f73a8


[SPARK-8615] [DOCUMENTATION] Fixed Sample deprecated code

Modified the deprecated jdbc api in the documentation.

Author: Tijo Thomas <tijopara...@gmail.com>

Closes #7039 from tijoparacka/JIRA_8615 and squashes the following commits:

6e73b8a [Tijo Thomas] Reverted new lines
4042fcf [Tijo Thomas] updated to sql documentation
a27949c [Tijo Thomas] Fixed Sample deprecated code


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/9213f73a
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/9213f73a
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/9213f73a

Branch: refs/heads/master
Commit: 9213f73a8ea09ae343af825a6b576c212cf4a0c7
Parents: fbb267e
Author: Tijo Thomas <tijopara...@gmail.com>
Authored: Tue Jun 30 10:50:45 2015 -0700
Committer: Cheng Lian <l...@databricks.com>
Committed: Tue Jun 30 10:50:45 2015 -0700

----------------------------------------------------------------------
 docs/sql-programming-guide.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/9213f73a/docs/sql-programming-guide.md
----------------------------------------------------------------------
diff --git a/docs/sql-programming-guide.md b/docs/sql-programming-guide.md
index 2786e3d..88c96a9 100644
--- a/docs/sql-programming-guide.md
+++ b/docs/sql-programming-guide.md
@@ -1773,9 +1773,9 @@ the Data Sources API.  The following options are 
supported:
 <div data-lang="scala"  markdown="1">
 
 {% highlight scala %}
-val jdbcDF = sqlContext.load("jdbc", Map(
-  "url" -> "jdbc:postgresql:dbserver",
-  "dbtable" -> "schema.tablename"))
+val jdbcDF = sqlContext.read.format("jdbc").options( 
+  Map("url" -> "jdbc:postgresql:dbserver",
+  "dbtable" -> "schema.tablename")).load()
 {% endhighlight %}
 
 </div>
@@ -1788,7 +1788,7 @@ Map<String, String> options = new HashMap<String, 
String>();
 options.put("url", "jdbc:postgresql:dbserver");
 options.put("dbtable", "schema.tablename");
 
-DataFrame jdbcDF = sqlContext.load("jdbc", options)
+DataFrame jdbcDF = sqlContext.read().format("jdbc"). options(options).load();
 {% endhighlight %}
 
 
@@ -1798,7 +1798,7 @@ DataFrame jdbcDF = sqlContext.load("jdbc", options)
 
 {% highlight python %}
 
-df = sqlContext.load(source="jdbc", url="jdbc:postgresql:dbserver", 
dbtable="schema.tablename")
+df = sqlContext.read.format('jdbc').options(url = 'jdbc:postgresql:dbserver', 
dbtable='schema.tablename').load()
 
 {% endhighlight %}
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to