Github user viirya commented on a diff in the pull request:
https://github.com/apache/spark/pull/15495#discussion_r83526181
--- Diff:
sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/SQLQuerySuite.scala
---
@@ -587,6 +594,30 @@ class SQLQuerySuite extends QueryTest with
SQLTestUtils with TestHiveSingleton {
}
}
+ test("CTAS with default fileformat") {
+ val table = "ctas1"
+ val ctas = s"CREATE TABLE IF NOT EXISTS $table SELECT key k, value
FROM src"
+ withSQLConf(SQLConf.CONVERT_CTAS.key -> "true") {
+ withSQLConf("hive.default.fileformat" -> "textfile") {
+ withTable(table) {
+ sql(ctas)
+ // We should use parquet here as that is the default datasource
fileformat. The default
+ // datasource file format is controlled by
`spark.sql.sources.default` configuration.
+ // This testcase verifies that setting `hive.default.fileformat`
has no impact on
+ // the target table's fileformat in case of CTAS.
+ assert(sessionState.conf.defaultDataSourceName === "parquet")
+ checkRelation(tableName = table, isDataSourceTable = true,
format = "parquet")
--- End diff --
Hmm, I think there is an error because in your mixing of named and
positional arguments, the positional arguments are not the prefix of argument
lists.
I.e., the compilation error:
checkRelation(table, isDataSourceTable = true, "parquet")
Should be fixed by:
checkRelation(table, isDataSourceTable = true, format = "parquet")
---
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]