Skip to content

Commit

Permalink
[SPARK-4693] [SQL] PruningPredicates may be wrong if predicates conta…
Browse files Browse the repository at this point in the history
…ins an empty AttributeSet() references
  • Loading branch information
YanTangZhai committed Dec 18, 2014
1 parent 70a3544 commit 37cfdf5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,5 +113,5 @@ class AttributeSet private (val baseSet: Set[AttributeEquals])

override def toString = "{" + baseSet.map(_.a).mkString(", ") + "}"

def isEmpty: Boolean = baseSet.isEmpty
def isEmpty: Boolean = baseSet.isEmpty
}

0 comments on commit 37cfdf5

Please sign in to comment.