Skip to content

Commit

Permalink
adress 2.10 build failure
Browse files Browse the repository at this point in the history
  • Loading branch information
dilipbiswal committed Oct 14, 2016
1 parent 8c5042b commit a98e173
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -606,13 +606,13 @@ class SQLQuerySuite extends QueryTest with SQLTestUtils with TestHiveSingleton {
// 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(table, isDataSourceTable = true, "parquet")
checkRelation(tableName = table, isDataSourceTable = true, format = "parquet")
}
}
withSQLConf("spark.sql.sources.default" -> "orc") {
withTable(table) {
sql(ctas)
checkRelation(table, isDataSourceTable = true, "orc")
checkRelation(tableName = table, isDataSourceTable = true, format = "orc")
}
}
}
Expand Down

0 comments on commit a98e173

Please sign in to comment.