This is an automated email from the ASF dual-hosted git repository.
wangzhen 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 71bcdb5b14 [MINOR] Fix StaticInvoke fallback reason (#10914)
71bcdb5b14 is described below
commit 71bcdb5b14858a25d860cfd819131c4888384994
Author: Zhen Wang <[email protected]>
AuthorDate: Tue Oct 21 10:17:27 2025 +0800
[MINOR] Fix StaticInvoke fallback reason (#10914)
---
.../main/scala/org/apache/gluten/expression/ExpressionConverter.scala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/gluten-substrait/src/main/scala/org/apache/gluten/expression/ExpressionConverter.scala
b/gluten-substrait/src/main/scala/org/apache/gluten/expression/ExpressionConverter.scala
index 43837274a2..61f5c1be8d 100644
---
a/gluten-substrait/src/main/scala/org/apache/gluten/expression/ExpressionConverter.scala
+++
b/gluten-substrait/src/main/scala/org/apache/gluten/expression/ExpressionConverter.scala
@@ -212,7 +212,7 @@ object ExpressionConverter extends SQLConfHelper with
Logging {
case i: StaticInvoke =>
throw new GlutenNotSupportException(
s"Not supported to transform StaticInvoke with object:
${i.staticObject.getName}, " +
- s"function: $i.functionName")
+ s"function: ${i.functionName}")
case _ =>
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]