We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9d2564 commit 159489cCopy full SHA for 159489c
sql/core/src/test/scala/org/apache/spark/sql/SQLQuerySuite.scala
@@ -2475,9 +2475,9 @@ class SQLQuerySuite extends QueryTest with SharedSQLContext {
2475
2476
test("SPARK-16975: Column-partition path starting '_' should be handled correctly") {
2477
withTempDir { dir =>
2478
- val parquetDir = new File(dir, "parquet").getCanonicalPath
2479
- spark.range(10).withColumn("_col", $"id").write.partitionBy("_col").save(parquetDir)
2480
- spark.read.load(parquetDir)
+ val dataDir = new File(dir, "data").getCanonicalPath
+ spark.range(10).withColumn("_col", $"id").write.partitionBy("_col").save(dataDir)
+ spark.read.load(dataDir)
2481
}
2482
2483
0 commit comments