1
0
Fork 0

Merging upstream version 26.11.1.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-03-23 10:42:04 +01:00
parent 913e13699d
commit 0b9b4fe8cb
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
52 changed files with 14319 additions and 14244 deletions

View file

@ -1836,7 +1836,7 @@ def groupconcat_sql(
on_overflow: bool = False,
) -> str:
this = expression.this
separator = expression.args.get("separator") or exp.Literal.string(sep)
separator = self.sql(expression.args.get("separator") or exp.Literal.string(sep))
on_overflow_sql = self.sql(expression, "on_overflow")
on_overflow_sql = f" ON OVERFLOW {on_overflow_sql}" if (on_overflow and on_overflow_sql) else ""