This is an automated email from the ASF dual-hosted git repository.

cancai pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampark.git


The following commit(s) were added to refs/heads/dev by this push:
     new 0f1f74ec9 [fix] fix mapper/core/ApplicationMapper.xml ERROR: operator 
does not exist: boolean = integer (#3459)
0f1f74ec9 is described below

commit 0f1f74ec96f1e2f8ee344fe02109623a66ee4ccd
Author: VampireAchao <[email protected]>
AuthorDate: Sat Jan 13 11:02:22 2024 +0800

    [fix] fix mapper/core/ApplicationMapper.xml ERROR: operator does not exist: 
boolean = integer (#3459)
---
 .../src/main/resources/mapper/core/ApplicationMapper.xml                | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/streampark-console/streampark-console-service/src/main/resources/mapper/core/ApplicationMapper.xml
 
b/streampark-console/streampark-console-service/src/main/resources/mapper/core/ApplicationMapper.xml
index 60d5b5b90..41ee5f1dd 100644
--- 
a/streampark-console/streampark-console-service/src/main/resources/mapper/core/ApplicationMapper.xml
+++ 
b/streampark-console/streampark-console-service/src/main/resources/mapper/core/ApplicationMapper.xml
@@ -267,7 +267,7 @@
         from t_flink_app t
         inner join t_user u
         on t.user_id = u.user_id
-        where t.probing = 1 or (t.tracking = 1 and t.state = 13)
+        where t.probing = true or (t.tracking = 1 and t.state = 13)
     </select>
 
     <update id="mapping" 
parameterType="org.apache.streampark.console.core.entity.Application">

Reply via email to