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

wodiwudi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ozhera.git


The following commit(s) were added to refs/heads/master by this push:
     new 95818bfc fix: bump ozhera-app to 2.2.8-incubating and optimize 
queryAppInfo SQL (#676)
95818bfc is described below

commit 95818bfc0d456fc77764a18295fae5a54c69d04d
Author: lhhhhf <[email protected]>
AuthorDate: Wed Aug 26 15:35:47 2026 +0800

    fix: bump ozhera-app to 2.2.8-incubating and optimize queryAppInfo SQL 
(#676)
    
    - Remove leading wildcard in LIKE to enable idx_app_name index usage
    - Bump ozhera-app version to 2.2.8-incubating
    
    Co-authored-by: liuhaifeng7 <[email protected]>
---
 ozhera-app/app-api/pom.xml                                            | 2 +-
 ozhera-app/app-common/pom.xml                                         | 4 ++--
 ozhera-app/app-server/pom.xml                                         | 4 ++--
 ozhera-app/app-service/pom.xml                                        | 4 ++--
 .../app-service/src/main/resources/mapper/HeraAppBaseInfoMapper.xml   | 2 +-
 ozhera-app/pom.xml                                                    | 2 +-
 6 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/ozhera-app/app-api/pom.xml b/ozhera-app/app-api/pom.xml
index 36dc5084..037e4ec7 100644
--- a/ozhera-app/app-api/pom.xml
+++ b/ozhera-app/app-api/pom.xml
@@ -24,7 +24,7 @@
     <parent>
         <groupId>org.apache.ozhera</groupId>
         <artifactId>ozhera-app</artifactId>
-        <version>2.2.7-incubating</version>
+        <version>2.2.8-incubating</version>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>
diff --git a/ozhera-app/app-common/pom.xml b/ozhera-app/app-common/pom.xml
index a050263b..8477b32b 100644
--- a/ozhera-app/app-common/pom.xml
+++ b/ozhera-app/app-common/pom.xml
@@ -23,12 +23,12 @@
     <parent>
         <groupId>org.apache.ozhera</groupId>
         <artifactId>ozhera-app</artifactId>
-        <version>2.2.7-incubating</version>
+        <version>2.2.8-incubating</version>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>
     <artifactId>app-common</artifactId>
-    <version>2.2.7-incubating</version>
+    <version>2.2.8-incubating</version>
 
     <dependencies>
         <dependency>
diff --git a/ozhera-app/app-server/pom.xml b/ozhera-app/app-server/pom.xml
index 6ac58a7c..590b22e8 100644
--- a/ozhera-app/app-server/pom.xml
+++ b/ozhera-app/app-server/pom.xml
@@ -23,13 +23,13 @@
     <parent>
         <groupId>org.apache.ozhera</groupId>
         <artifactId>ozhera-app</artifactId>
-        <version>2.2.7-incubating</version>
+        <version>2.2.8-incubating</version>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>
 
     <artifactId>app-server</artifactId>
-    <version>2.2.7-incubating</version>
+    <version>2.2.8-incubating</version>
 
     <properties>
         <maven.compiler.source>21</maven.compiler.source>
diff --git a/ozhera-app/app-service/pom.xml b/ozhera-app/app-service/pom.xml
index 28b2bc2c..661ba931 100644
--- a/ozhera-app/app-service/pom.xml
+++ b/ozhera-app/app-service/pom.xml
@@ -23,12 +23,12 @@
     <parent>
         <groupId>org.apache.ozhera</groupId>
         <artifactId>ozhera-app</artifactId>
-        <version>2.2.7-incubating</version>
+        <version>2.2.8-incubating</version>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>
     <artifactId>app-service</artifactId>
-    <version>2.2.7-incubating</version>
+    <version>2.2.8-incubating</version>
 
     <properties>
         <maven.compiler.source>21</maven.compiler.source>
diff --git 
a/ozhera-app/app-service/src/main/resources/mapper/HeraAppBaseInfoMapper.xml 
b/ozhera-app/app-service/src/main/resources/mapper/HeraAppBaseInfoMapper.xml
index 0d349473..ebcd1a2d 100644
--- a/ozhera-app/app-service/src/main/resources/mapper/HeraAppBaseInfoMapper.xml
+++ b/ozhera-app/app-service/src/main/resources/mapper/HeraAppBaseInfoMapper.xml
@@ -644,7 +644,7 @@
         <where>
             status = 0
             <if test="appName != null and appName != ''">
-                AND app_name LIKE concat('%',#{appName},'%')
+                AND app_name LIKE concat(#{appName},'%')
             </if>
             <if test="platformType != null">
                 AND platform_type = #{platformType}
diff --git a/ozhera-app/pom.xml b/ozhera-app/pom.xml
index 798b91c8..97041dc7 100644
--- a/ozhera-app/pom.xml
+++ b/ozhera-app/pom.xml
@@ -29,7 +29,7 @@
     </parent>
 
     <artifactId>ozhera-app</artifactId>
-    <version>2.2.7-incubating</version>
+    <version>2.2.8-incubating</version>
     <packaging>pom</packaging>
 
     <modules>


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to