Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import org.apache.spark.{SerializableWritable, SparkContext, TaskContext}
* [[ParquetRelation]] as a RDD[Row].
*/
case class ParquetTableScan(
@transient output: Seq[Attribute],
output: Seq[Attribute],
@transient relation: ParquetRelation,
@transient columnPruningPred: Option[Expression])(
@transient val sc: SparkContext)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class ParquetQuerySuite extends FunSuite with BeforeAndAfterAll {
case Seq(_, _) => // All good
}

// TODO: We can't run this query as it NPEs
query.collect()
}

test("Import of simple Parquet file") {
Expand Down