This is an automated email from the ASF dual-hosted git repository.
yuanzhou 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 2850e6b43d [FLINK] Fix flink CI (#9797)
2850e6b43d is described below
commit 2850e6b43ddce9bdc8eb7be2ec95bb478035077c
Author: PHILO-HE <[email protected]>
AuthorDate: Thu May 29 22:25:04 2025 +0800
[FLINK] Fix flink CI (#9797)
Fix issue:
Invalid workflow file: .github/workflows/flink.yml#L1test is not a valid
event name.
---
.github/workflows/flink.yml | 3 ++-
.../src/main/java/org/apache/gluten/rexnode/RexNodeConverter.java | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/flink.yml b/.github/workflows/flink.yml
index 57eb5ec3af..6d0daf0a4e 100644
--- a/.github/workflows/flink.yml
+++ b/.github/workflows/flink.yml
@@ -21,7 +21,8 @@ on:
- '.github/workflows/flink.yml'
- 'gluten-flink/**'
- test:
+jobs:
+ flink-test:
runs-on: ubuntu-22.04
container: apache/gluten:centos-8-jdk17
steps:
diff --git
a/gluten-flink/planner/src/main/java/org/apache/gluten/rexnode/RexNodeConverter.java
b/gluten-flink/planner/src/main/java/org/apache/gluten/rexnode/RexNodeConverter.java
index 18b01a0e5b..5c9178b31e 100644
---
a/gluten-flink/planner/src/main/java/org/apache/gluten/rexnode/RexNodeConverter.java
+++
b/gluten-flink/planner/src/main/java/org/apache/gluten/rexnode/RexNodeConverter.java
@@ -103,7 +103,8 @@ public class RexNodeConverter {
case VARCHAR:
return new VarCharValue(literal.getValue().toString());
case BINARY:
- return
VarBinaryValue.create(literal.getValue().toString().getBytes(StandardCharsets.UTF_8));
+ return VarBinaryValue.create(
+ literal.getValue().toString().getBytes(StandardCharsets.UTF_8));
case DECIMAL:
case INTERVAL_SECOND:
// interval is used as decimal.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]