1
0
Fork 0

Merging upstream version 26.24.0.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-06-02 05:53:55 +02:00
parent c78999c8c9
commit 2b9f8478b0
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
53 changed files with 3642 additions and 3447 deletions

View file

@ -457,3 +457,15 @@ ON t.id = s.id
WHEN MATCHED THEN UPDATE SET
status = s.status,
amount = s.amount;
SELECT
id,
-- SUM(total) as all_that,
ARRAY_AGG(foo)[0][0] AS first_foo,
FROM facts
GROUP BY all;
SELECT
id,
ARRAY_AGG(foo)[0][0] AS first_foo /* SUM(total) as all_that, */
FROM facts
GROUP BY ALL;