Skip to content
Snippets Groups Projects
Commit 64fbd1ce authored by Liang-Chi Hsieh's avatar Liang-Chi Hsieh Committed by Wenchen Fan
Browse files

[SPARK-22124][SQL] Sample and Limit should also defer input evaluation under codegen

## What changes were proposed in this pull request?

We can override `usedInputs` to claim that an operator defers input evaluation. `Sample` and `Limit` are two operators which should claim it but don't. We should do it.

## How was this patch tested?

Existing tests.

Author: Liang-Chi Hsieh <viirya@gmail.com>

Closes #19345 from viirya/SPARK-22124.
parent d8e825e3
No related branches found
No related tags found
No related merge requests found
...@@ -267,6 +267,10 @@ case class SampleExec( ...@@ -267,6 +267,10 @@ case class SampleExec(
} }
} }
// Mark this as empty. This plan doesn't need to evaluate any inputs and can defer the evaluation
// to the parent operator.
override def usedInputs: AttributeSet = AttributeSet.empty
override def inputRDDs(): Seq[RDD[InternalRow]] = { override def inputRDDs(): Seq[RDD[InternalRow]] = {
child.asInstanceOf[CodegenSupport].inputRDDs() child.asInstanceOf[CodegenSupport].inputRDDs()
} }
......
...@@ -62,6 +62,10 @@ trait BaseLimitExec extends UnaryExecNode with CodegenSupport { ...@@ -62,6 +62,10 @@ trait BaseLimitExec extends UnaryExecNode with CodegenSupport {
child.asInstanceOf[CodegenSupport].inputRDDs() child.asInstanceOf[CodegenSupport].inputRDDs()
} }
// Mark this as empty. This plan doesn't need to evaluate any inputs and can defer the evaluation
// to the parent operator.
override def usedInputs: AttributeSet = AttributeSet.empty
protected override def doProduce(ctx: CodegenContext): String = { protected override def doProduce(ctx: CodegenContext): String = {
child.asInstanceOf[CodegenSupport].produce(ctx, this) child.asInstanceOf[CodegenSupport].produce(ctx, this)
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment