Github user gatorsmile commented on a diff in the pull request:
https://github.com/apache/spark/pull/15664#discussion_r93999899
--- Diff:
sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/jdbc/JdbcRelationProvider.scala
---
@@ -60,23 +60,27 @@ class JdbcRelationProvider extends
CreatableRelationProvider
val conn = JdbcUtils.createConnectionFactory(jdbcOptions)()
try {
- val tableExists = JdbcUtils.tableExists(conn, url, table)
+ val tableSchema = JdbcUtils.getSchema(conn, url, table)
+ val tableExists = tableSchema.isDefined
+ val caseSensitive = sqlContext.conf.caseSensitiveAnalysis
if (tableExists) {
mode match {
case SaveMode.Overwrite =>
- if (isTruncate && isCascadingTruncateTable(url) ==
Some(false)) {
+ val savingSchema = if (isTruncate &&
isCascadingTruncateTable(url) == Some(false)) {
// In this case, we should truncate table and then load.
truncateTable(conn, table)
- saveTable(df, url, table, jdbcOptions)
+ JdbcUtils.getSavingSchema(df.schema, tableSchema.get,
caseSensitive)
--- End diff --
Based on your current implementation, the `tableSchema` could be None,
right?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]