We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efad14f commit f623ffdCopy full SHA for f623ffd
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/optimizer/CombiningLimitsSuite.scala
@@ -27,9 +27,9 @@ class CombiningLimitsSuite extends PlanTest {
27
28
object Optimize extends RuleExecutor[LogicalPlan] {
29
val batches =
30
- Batch("Combine Limit", FixedPoint(2),
+ Batch("Combine Limit", FixedPoint(10),
31
CombineLimits) ::
32
- Batch("Constant Folding", FixedPoint(3),
+ Batch("Constant Folding", FixedPoint(10),
33
NullPropagation,
34
ConstantFolding,
35
BooleanSimplification) :: Nil
0 commit comments