BUG #18758: Incorrect query result caused by ROLLUP operation

From: PG Bug reporting form <noreply(at)postgresql(dot)org>
To: pgsql-bugs(at)lists(dot)postgresql(dot)org
Cc: vectorplanck(at)gmail(dot)com
Subject: BUG #18758: Incorrect query result caused by ROLLUP operation
Date: 2024-12-30 16:03:58
Message-ID: 18758-7bbeea9719044a29@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

The following bug has been logged on the website:

Bug reference: 18758
Logged by: Pisces Mar.
Email address: vectorplanck(at)gmail(dot)com
PostgreSQL version: 17.2
Operating system: window10
Description:

create table t1 (c1 char(50));
create table t2 (c1 integer);
select t1.c1 from t2, t1 group by rollup(t1.c1); -- actual: {null},
expected: {}

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message PG Bug reporting form 2024-12-30 16:26:49 BUG #18759: Missing files
Previous Message PG Bug reporting form 2024-12-30 06:22:11 BUG #18757: string_agg function(text, text) design issue