Skip to content

Commit

Permalink
Fix: Address review comments - use Option instead of Some
Browse files Browse the repository at this point in the history
  • Loading branch information
karuppayya committed Jun 3, 2020
1 parent a58a75f commit d5e999f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -654,7 +654,7 @@ case class HiveTableRelation(
tableMeta: CatalogTable,
dataCols: Seq[AttributeReference],
partitionCols: Seq[AttributeReference],
tableStats: Option[Statistics] = Some(Statistics(sizeInBytes = SQLConf.get.defaultSizeInBytes)),
tableStats: Option[Statistics] = Option(Statistics(sizeInBytes = SQLConf.get.defaultSizeInBytes)),
@transient prunedPartitions: Option[Seq[CatalogTablePartition]] = None)
extends LeafNode with MultiInstanceRelation {
assert(tableMeta.identifier.database.isDefined)
Expand Down

0 comments on commit d5e999f

Please sign in to comment.