Christian Kurz created SPARK-12010:
--------------------------------------

             Summary: Spark JDBC requires support for column-name-free INSERT 
syntax
                 Key: SPARK-12010
                 URL: https://issues.apache.org/jira/browse/SPARK-12010
             Project: Spark
          Issue Type: Bug
          Components: SQL
    Affects Versions: 1.5.2
            Reporter: Christian Kurz


Spark JDBC write only works with technologies which support the following 
INSERT statement syntax (JdbcUtils.scala: insertStatement()):

INSERT INTO $table VALUES ( ?, ?, ..., ? )

Some technologies require a list of column names:

INSERT INTO $table ( $colNameList ) VALUES ( ?, ?, ..., ? )

Therefore technologies like Progress JDBC Driver for Cassandra do not work with 
Spark JDBC write.

Idea for fix:
Move JdbcUtils.scala:insertStatement() into SqlDialect and add a SqlDialect for 
Progress JDBC Driver for Cassandra



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

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

Reply via email to