Skip to content

Commit

Permalink
[BUILD FIX] Fix compilation of Spark SQL Java API.
Browse files Browse the repository at this point in the history
The JavaAPI and the Parquet improvements PRs didn't conflict, but broke the build.

Author: Michael Armbrust <[email protected]>

Closes apache#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 pdeyhim committed Jun 25, 2014
1 parent 9f19e17 commit e09bc45
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit e09bc45

Please sign in to comment.