This is an automated email from the ASF dual-hosted git repository.
JingsongLi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 9be8034183 [python] Add 'listagg' to supported aggregation functions
list (#8667)
9be8034183 is described below
commit 9be80341834d9fc2033bff1c60f54388ffee5458
Author: AuroraVoyage <[email protected]>
AuthorDate: Thu Jul 16 13:18:09 2026 +0800
[python] Add 'listagg' to supported aggregation functions list (#8667)
---
paimon-python/pypaimon/read/merge_engine_support.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/paimon-python/pypaimon/read/merge_engine_support.py
b/paimon-python/pypaimon/read/merge_engine_support.py
index cb5d34ab87..998dd72e80 100644
--- a/paimon-python/pypaimon/read/merge_engine_support.py
+++ b/paimon-python/pypaimon/read/merge_engine_support.py
@@ -62,6 +62,7 @@ _AGGREGATION_SUPPORTED_AGG_FUNCS = frozenset([
"first_value", "first_non_null_value",
"sum", "max", "min",
"bool_or", "bool_and",
+ "listagg",
])
_FIELDS_PREFIX = "fields."
_FIELD_SEQUENCE_GROUP_SUFFIX = ".sequence-group"