From 0ff15976733c0b1b88740161b19fc9d8a03c835f Mon Sep 17 00:00:00 2001 From: AuroraVoyage Date: Thu, 16 Jul 2026 14:34:59 +0800 Subject: [PATCH] [python] Update aggregation unsupported message. --- paimon-python/pypaimon/read/merge_engine_support.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/paimon-python/pypaimon/read/merge_engine_support.py b/paimon-python/pypaimon/read/merge_engine_support.py index 998dd72e8032..7cd948788569 100644 --- a/paimon-python/pypaimon/read/merge_engine_support.py +++ b/paimon-python/pypaimon/read/merge_engine_support.py @@ -235,8 +235,8 @@ def check_supported(table) -> None: "built-in aggregators ({}); retract opt-ins " "(aggregation.remove-record-on-delete, " "fields..ignore-retract) " - "and other aggregators (product / listagg / collect / " - "merge_map* / nested_update* / theta_sketch / " + "and other aggregators (product / collect / " + "merge_map* / theta_sketch / " "hll_sketch / roaring_bitmap_*) are not yet supported. " "Open an issue to track support.".format( ", ".join(sorted(unsupported)), @@ -287,8 +287,7 @@ def aggregation_unsupported_options(table) -> Set[str]: ``builtin_seq_comparator``). 3. Out-of-scope aggregator selections: ``fields..aggregate- function`` and ``fields.default-aggregate-function`` set to an - identifier this engine doesn't support yet (e.g. ``collect``, - ``nested_update``). + identifier this engine doesn't support yet (e.g. ``collect``). """ flagged: Set[str] = set() raw = table.options.options.to_map()