Groupe_concat postgres 中的最大长度?

Groupe_concat max length in postgres?

有没有办法像下面的 SQL 示例一样,在 Postgres 中设置 groupe_concat 最大长度?

SET group_concat_max_len=15000000;

非常感谢。

不存在没有这样的配置参数。

string_agg()(或任何其他字符串连接)结果的最大长度受限于 Postgres 中文本值的最大长度,即 1GB。