Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
[BUILD FIX] Fix compilation of Spark SQL Java API.
The JavaAPI and the Parquet improvements PRs didn't conflict, but broke the build.

Author: Michael Armbrust <[email protected]>

Closes #316 from marmbrus/hotFixJavaApi and squashes the following commits:

0b84c2d [Michael Armbrust] Fix compilation of Spark SQL Java API.
  • Loading branch information
marmbrus authored and mateiz committed Apr 3, 2014
commit d94826be6d46edf3bc6377d33787df23a6030a6c
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class JavaSQLContext(sparkContext: JavaSparkContext) {
* Loads a parquet file, returning the result as a [[JavaSchemaRDD]].
*/
def parquetFile(path: String): JavaSchemaRDD =
new JavaSchemaRDD(sqlContext, ParquetRelation("ParquetFile", path))
new JavaSchemaRDD(sqlContext, ParquetRelation(path))


/**
Expand Down