Skip to content
Snippets Groups Projects
Commit d94826be authored by Michael Armbrust's avatar Michael Armbrust Committed by Matei Zaharia
Browse files

[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 <michael@databricks.com>

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

0b84c2d [Michael Armbrust] Fix compilation of Spark SQL Java API.
parent a599e43d
No related branches found
No related tags found
No related merge requests found
...@@ -87,7 +87,7 @@ class JavaSQLContext(sparkContext: JavaSparkContext) { ...@@ -87,7 +87,7 @@ class JavaSQLContext(sparkContext: JavaSparkContext) {
* Loads a parquet file, returning the result as a [[JavaSchemaRDD]]. * Loads a parquet file, returning the result as a [[JavaSchemaRDD]].
*/ */
def parquetFile(path: String): JavaSchemaRDD = def parquetFile(path: String): JavaSchemaRDD =
new JavaSchemaRDD(sqlContext, ParquetRelation("ParquetFile", path)) new JavaSchemaRDD(sqlContext, ParquetRelation(path))
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment