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 20adbc8 commit a4ab46eCopy full SHA for a4ab46e
sql/hive/src/test/scala/org/apache/spark/sql/hive/QueryPartitionSuite.scala
@@ -36,7 +36,7 @@ class QueryPartitionSuite extends QueryTest {
36
val tmpDir = Files.createTempDir()
37
// create the table for test
38
sql(s"CREATE TABLE table_with_partition(key int,value string) " +
39
- "PARTITIONED by (ds string) location '${tmpDir.toURI.toString}' ")
+ s"PARTITIONED by (ds string) location '${tmpDir.toURI.toString}' ")
40
sql("INSERT OVERWRITE TABLE table_with_partition partition (ds='1') " +
41
"SELECT key,value FROM testData")
42
sql("INSERT OVERWRITE TABLE table_with_partition partition (ds='2') " +
0 commit comments