Skip to content

Commit

Permalink
[MINOR] Duplicate extends SparkPlan
Browse files Browse the repository at this point in the history
  • Loading branch information
zml1206 committed Sep 11, 2024
1 parent 85d90c9 commit e94f191
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ object ProjectExecTransformer {
}

// An alternatives for UnionExec.
case class ColumnarUnionExec(children: Seq[SparkPlan]) extends SparkPlan with GlutenPlan {
case class ColumnarUnionExec(children: Seq[SparkPlan]) extends GlutenPlan {
children.foreach(
child =>
child match {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ case class DummyFilterColumnar(child: LogicalPlan) extends UnaryNode {
}
}

case class DummyFilterColumnarExec(child: SparkPlan) extends SparkPlan with UnaryExecNode {
case class DummyFilterColumnarExec(child: SparkPlan) extends UnaryExecNode {
override protected def doExecute(): RDD[InternalRow] = {
throw new IllegalStateException("Do not support row based operation.")
}
Expand Down

0 comments on commit e94f191

Please sign in to comment.