This is an automated email from the ASF dual-hosted git repository. lzljs3620320 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/paimon.git
commit 254122dca31549605b426f7e502a9c87a31f3840 Author: JingsongLi <[email protected]> AuthorDate: Wed Aug 27 17:05:13 2025 +0800 [doc] Document topN optimization in query performance --- docs/content/append-table/query-performance.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/content/append-table/query-performance.md b/docs/content/append-table/query-performance.md index dbc80a1d35..aad62636e5 100644 --- a/docs/content/append-table/query-performance.md +++ b/docs/content/append-table/query-performance.md @@ -40,9 +40,11 @@ For Spark SQL, table with default `metadata.stats-mode` can be accelerated: ```sql SELECT MIN(a), MAX(b) FROM TABLE WHERE DT = '20230101'; + +SELECT * FROM TABLE ORDER BY a LIMIT 1; ``` -Min max query can be also accelerated during compilation and returns very quickly. +Min max topN query can be also accelerated during compilation and returns very quickly. ## Data Skipping By Order
