Skip to content
Closed
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 @@ -110,8 +110,9 @@ class HadoopTableReader(
deserializerClass: Class[_ <: Deserializer],
filterOpt: Option[PathFilter]): RDD[InternalRow] = {

assert(!hiveTable.isPartitioned, """makeRDDForTable() cannot be called on a partitioned table,
since input formats may differ across partitions. Use makeRDDForTablePartitions() instead.""")
assert(!hiveTable.isPartitioned,
"makeRDDForTable() cannot be called on a partitioned table, since input formats may " +
"differ across partitions. Use makeRDDForPartitionedTable() instead.")

// Create local references to member variables, so that the entire `this` object won't be
// serialized in the closure below.
Expand Down