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 17bc9c0 commit 3bc7c03Copy full SHA for 3bc7c03
sql/core/src/test/scala/org/apache/spark/sql/execution/command/DDLSuite.scala
@@ -677,7 +677,8 @@ class DDLSuite extends QueryTest with SharedSQLContext with BeforeAndAfterEach {
677
}
678
679
test("create temporary view using") {
680
- val csvFile = Thread.currentThread().getContextClassLoader.getResource("cars.csv").toString()
+ val csvFile =
681
+ Thread.currentThread().getContextClassLoader.getResource("test-data/cars.csv").toString
682
withView("testview") {
683
sql(s"CREATE OR REPLACE TEMPORARY VIEW testview (c1: String, c2: String) USING " +
684
"org.apache.spark.sql.execution.datasources.csv.CSVFileFormat " +
0 commit comments