BUG #18877: PostgreSQL triggers assertion failure - Mailing list pgsql-bugs

From PG Bug reporting form
Subject BUG #18877: PostgreSQL triggers assertion failure
Date
Msg-id 18877-c3c3ad75845833bb@postgresql.org
Whole thread Raw
Responses Re: BUG #18877: PostgreSQL triggers assertion failure
Re: BUG #18877: PostgreSQL triggers assertion failure
Re: BUG #18877: PostgreSQL triggers assertion failure
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      18877
Logged by:          Yu Liang
Email address:      luy70@psu.edu
PostgreSQL version: 17.4
Operating system:   Ubuntu 24.04 LTS ARM64 VM
Description:

In the debug build of PostgreSQL 17.4, compiled with `configure
--enable-debug --prefix=$(pwd) --exec-prefix=$(pwd) --enable-cassert`,
triggered Assertion Failure when executing the following statement: 

```sql
SELECT ALL GROUP BY ALL ( ), CUBE ( CASE WHEN FALSE THEN TRUE END )
INTERSECT ALL SELECT ALL FROM JSON_ARRAY ( WITH any_cte_name AS ( ( TABLE
v00 ) ) VALUES ( FALSE ) ), any_table_name GROUP BY CUBE ( CASE WHEN TRUE
THEN FALSE END );
```

The assertion triggered is: Assert("IsA(cte->ctequery, InsertStmt) ||
IsA(cte->ctequery, UpdateStmt) || IsA(cte->ctequery, DeleteStmt) ||
IsA(cte->ctequery, MergeStmt)"). 
File: "/home/postgresql/postgres/bld/../src/backend/parser/parse_cte.c",
Line: 150.


pgsql-bugs by date:

Previous
From: Manika Singhal
Date:
Subject: Re: PostgreSQL v15.12 fails to perform PG_UPGRADE from v13 and v9 on Windows
Next
From: PG Bug reporting form
Date:
Subject: BUG #18878: PostgreSQL triggers Assertion Failure in Debug build