Skip to content

Commit 8fc6a8c

Browse files
author
Anselme Vignon
committed
correcting tests on temporary tables
1 parent 24928ea commit 8fc6a8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sql/hive/src/test/scala/org/apache/spark/sql/parquet/parquetSuites.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,15 +186,15 @@ class ParquetSourceSuite extends ParquetTest {
186186
create temporary table partitioned_parquet_with_key_and_complextypes
187187
USING org.apache.spark.sql.parquet
188188
OPTIONS (
189-
path '${new File(partitionedTableDirWithKeyAndComplexTypes, "p=1").getCanonicalPath}'
189+
path '${partitionedTableDirWithKeyAndComplexTypes.getCanonicalPath}'
190190
)
191191
""")
192192

193193
sql( s"""
194194
create temporary table partitioned_parquet_with_complextypes
195195
USING org.apache.spark.sql.parquet
196196
OPTIONS (
197-
path '${new File(partitionedTableDirWithComplexTypes, "p=1").getCanonicalPath}'
197+
path '${partitionedTableDirWithComplexTypes.getCanonicalPath}'
198198
)
199199
""")
200200
}

0 commit comments

Comments
 (0)