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

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


The following commit(s) were added to refs/heads/master by this push:
     new 7bf39a9c37b Add Doris ANALYZE TABLE parser IT cases for WITH SYNC 
clause and column list (#39520)
7bf39a9c37b is described below

commit 7bf39a9c37b802eb32ad75f3a84de6a75a96d49d
Author: Liang Zhang <[email protected]>
AuthorDate: Wed Aug 19 23:16:12 2026 +0800

    Add Doris ANALYZE TABLE parser IT cases for WITH SYNC clause and column 
list (#39520)
---
 test/it/parser/src/main/resources/case/dal/analyze-table.xml          | 2 ++
 test/it/parser/src/main/resources/sql/supported/dal/analyze-table.xml | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/test/it/parser/src/main/resources/case/dal/analyze-table.xml 
b/test/it/parser/src/main/resources/case/dal/analyze-table.xml
index f039bd2aa37..27022ef4020 100644
--- a/test/it/parser/src/main/resources/case/dal/analyze-table.xml
+++ b/test/it/parser/src/main/resources/case/dal/analyze-table.xml
@@ -20,4 +20,6 @@
     <common sql-case-id="analyze_table_doris" />
     <common sql-case-id="analyze_table_with_sample_percent" />
     <common sql-case-id="analyze_table_with_sample_rows" />
+    <common sql-case-id="analyze_table_with_sync" />
+    <common sql-case-id="analyze_table_with_columns_and_sample_percent" />
 </sql-parser-test-cases>
diff --git 
a/test/it/parser/src/main/resources/sql/supported/dal/analyze-table.xml 
b/test/it/parser/src/main/resources/sql/supported/dal/analyze-table.xml
index 86a925a69dc..f4d269fca98 100644
--- a/test/it/parser/src/main/resources/sql/supported/dal/analyze-table.xml
+++ b/test/it/parser/src/main/resources/sql/supported/dal/analyze-table.xml
@@ -20,4 +20,6 @@
     <sql-case id="analyze_table_doris" value="ANALYZE TABLE t_order" 
db-types="Doris" />
     <sql-case id="analyze_table_with_sample_percent" value="ANALYZE TABLE 
lineitem WITH SAMPLE PERCENT 10" db-types="Doris" />
     <sql-case id="analyze_table_with_sample_rows" value="ANALYZE TABLE 
lineitem WITH SAMPLE ROWS 100000" db-types="Doris" />
+    <sql-case id="analyze_table_with_sync" value="ANALYZE TABLE lineitem WITH 
SYNC" db-types="Doris" />
+    <sql-case id="analyze_table_with_columns_and_sample_percent" 
value="ANALYZE TABLE lineitem (l_orderkey, l_quantity) WITH SAMPLE PERCENT 10" 
db-types="Doris" />
 </sql-cases>

Reply via email to