You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Apache Spark (JIRA)" <ji...@apache.org> on 2016/08/02 05:12:20 UTC

[jira] [Assigned] (SPARK-16848) Make jdbc() and read.format("jdbc") consistently throwing exception for user-specified schema

     [ https://issues.apache.org/jira/browse/SPARK-16848?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Apache Spark reassigned SPARK-16848:
------------------------------------

    Assignee:     (was: Apache Spark)

> Make jdbc() and read.format("jdbc") consistently throwing exception for user-specified schema
> ---------------------------------------------------------------------------------------------
>
>                 Key: SPARK-16848
>                 URL: https://issues.apache.org/jira/browse/SPARK-16848
>             Project: Spark
>          Issue Type: Improvement
>          Components: SQL
>    Affects Versions: 2.0.0
>            Reporter: Hyukjin Kwon
>            Priority: Trivial
>
> Currently,
> {code}
> spark.read.schema(StructType(Seq())).jdbc(...),show()
> {code}
> does not throws an exception whereas
> {code}
> spark.read.schema(StructType(Seq())).option(...).format("jdbc").load().show()
> {code}
> does as below:
> {code}
> jdbc does not allow user-specified schemas.;
> org.apache.spark.sql.AnalysisException: jdbc does not allow user-specified schemas.;
> 	at org.apache.spark.sql.execution.datasources.DataSource.resolveRelation(DataSource.scala:320)
> 	at org.apache.spark.sql.DataFrameReader.load(DataFrameReader.scala:149)
> 	at org.apache.spark.sql.DataFrameReader.load(DataFrameReader.scala:122)
> 	at org.apache.spark.sql.jdbc.JDBCSuite$$anonfun$17.apply$mcV$sp(JDBCSuite.scala:351)
> {code}
> It'd make sense throwing the exception when user specifies schema identically.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org