You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Sean Owen (JIRA)" <ji...@apache.org> on 2017/03/01 23:46:45 UTC

[jira] [Resolved] (SPARK-19775) Remove an obsolete `partitionBy().insertInto()` test case

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

Sean Owen resolved SPARK-19775.
-------------------------------
       Resolution: Fixed
    Fix Version/s: 2.2.0

Issue resolved by pull request 17106
[https://github.com/apache/spark/pull/17106]

> Remove an obsolete `partitionBy().insertInto()` test case
> ---------------------------------------------------------
>
>                 Key: SPARK-19775
>                 URL: https://issues.apache.org/jira/browse/SPARK-19775
>             Project: Spark
>          Issue Type: Bug
>          Components: SQL, Tests
>    Affects Versions: 2.1.0
>            Reporter: Dongjoon Hyun
>            Priority: Trivial
>             Fix For: 2.2.0
>
>
> This issue removes [a test case|https://github.com/apache/spark/blame/master/sql/hive/src/test/scala/org/apache/spark/sql/hive/InsertIntoHiveTableSuite.scala#L287-L298] which was introduced by [SPARK-14459|https://github.com/apache/spark/commit/652bbb1bf62722b08a062c7a2bf72019f85e179e] and was superseded by [SPARK-16033|https://github.com/apache/spark/blame/master/sql/hive/src/test/scala/org/apache/spark/sql/hive/InsertIntoHiveTableSuite.scala#L365-L371]. Basically, we cannot use `partitionBy` and `insertInto` together.
> {code}
>   test("Reject partitioning that does not match table") {
>     withSQLConf(("hive.exec.dynamic.partition.mode", "nonstrict")) {
>       sql("CREATE TABLE partitioned (id bigint, data string) PARTITIONED BY (part string)")
>       val data = (1 to 10).map(i => (i, s"data-$i", if ((i % 2) == 0) "even" else "odd"))
>           .toDF("id", "data", "part")
>       intercept[AnalysisException] {
>         // cannot partition by 2 fields when there is only one in the table definition
>         data.write.partitionBy("part", "data").insertInto("partitioned")
>       }
>     }
>   }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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