BUG #17644: EXPLAIN VERBOSE fails on query with SEARCH BREADTH FIRST

Поиск
Список
Период
Сортировка
От PG Bug reporting form
Тема BUG #17644: EXPLAIN VERBOSE fails on query with SEARCH BREADTH FIRST
Дата
Msg-id 17644-3bd1f3036d6d7a16@postgresql.org
обсуждение исходный текст
Ответы Re: BUG #17644: EXPLAIN VERBOSE fails on query with SEARCH BREADTH FIRST  (Tom Lane <tgl@sss.pgh.pa.us>)
Список 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 по дате отправления:

Предыдущее
От: Amit Kapila
Дата:
Сообщение: Re: WAL segments removed from primary despite the fact that logical replication slot needs it.
Следующее
От: Thomas Munro
Дата:
Сообщение: Re: BUG #17641: postgresql service persistently restarts because "could not open shared memory segment"