This is an automated email from the ASF dual-hosted git repository.
ulyssesyou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git
The following commit(s) were added to refs/heads/main by this push:
new 63db78931 [VL] Fix build error (#5891)
63db78931 is described below
commit 63db789311a2ee65500b3011592e62cc026f04e8
Author: Zhen Li <[email protected]>
AuthorDate: Tue May 28 16:08:16 2024 +0800
[VL] Fix build error (#5891)
---
.../scala/org/apache/gluten/execution/SampleExecTransformer.scala | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/gluten-core/src/main/scala/org/apache/gluten/execution/SampleExecTransformer.scala
b/gluten-core/src/main/scala/org/apache/gluten/execution/SampleExecTransformer.scala
index 86189392a..6f9ef3428 100644
---
a/gluten-core/src/main/scala/org/apache/gluten/execution/SampleExecTransformer.scala
+++
b/gluten-core/src/main/scala/org/apache/gluten/execution/SampleExecTransformer.scala
@@ -112,8 +112,8 @@ case class SampleExecTransformer(
doNativeValidation(substraitContext, relNode)
}
- override def doTransform(context: SubstraitContext): TransformContext = {
- val childCtx = child.asInstanceOf[TransformSupport].doTransform(context)
+ override protected def doTransform(context: SubstraitContext):
TransformContext = {
+ val childCtx = child.asInstanceOf[TransformSupport].transform(context)
val operatorId = context.nextOperatorId(this.nodeName)
val currRel =
getRelNode(context, condition, child.output, operatorId, childCtx.root,
validation = false)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]