Skip to content

Commit a4ab46e

Browse files
committed
Fixed tests.
1 parent 20adbc8 commit a4ab46e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/hive/src/test/scala/org/apache/spark/sql/hive/QueryPartitionSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class QueryPartitionSuite extends QueryTest {
3636
val tmpDir = Files.createTempDir()
3737
// create the table for test
3838
sql(s"CREATE TABLE table_with_partition(key int,value string) " +
39-
"PARTITIONED by (ds string) location '${tmpDir.toURI.toString}' ")
39+
s"PARTITIONED by (ds string) location '${tmpDir.toURI.toString}' ")
4040
sql("INSERT OVERWRITE TABLE table_with_partition partition (ds='1') " +
4141
"SELECT key,value FROM testData")
4242
sql("INSERT OVERWRITE TABLE table_with_partition partition (ds='2') " +

0 commit comments

Comments
 (0)