BUG #17644: EXPLAIN VERBOSE fails on query with SEARCH BREADTH FIRST - Mailing list pgsql-bugs

From PG Bug reporting form
Subject BUG #17644: EXPLAIN VERBOSE fails on query with SEARCH BREADTH FIRST
Date
Msg-id 17644-3bd1f3036d6d7a16@postgresql.org
Whole thread Raw
Responses Re: BUG #17644: EXPLAIN VERBOSE fails on query with SEARCH BREADTH FIRST
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      17644
Logged by:          Matthijs van der Vleuten
Email address:      postgresql@zr40.nl
PostgreSQL version: 14.5
Operating system:   Debian 11.5
Description:

The following query causes EXPLAIN VERBOSE to raise an error.

EXPLAIN VERBOSE
WITH RECURSIVE test AS (
  SELECT 1 AS x
  UNION ALL
  SELECT x+1
  FROM test
) SEARCH BREADTH FIRST BY x SET y
SELECT * FROM test LIMIT 10;

ERROR:  record type has not been registered

EXPLAIN without VERBOSE, and the query itself, do not raise an error. Also,
the error does not appear when using SEARCH DEPTH FIRST.

Reproduced on 14.5 and 15.0.


pgsql-bugs by date:

Previous
From: Amit Kapila
Date:
Subject: Re: WAL segments removed from primary despite the fact that logical replication slot needs it.
Next
From: Thomas Munro
Date:
Subject: Re: BUG #17641: postgresql service persistently restarts because "could not open shared memory segment"