StatisticsObjIsVisibleExt lacks "do not look in temp namespace"

Noah Misch <noah@leadboat.com>

From: Noah Misch <noah@leadboat.com>
To: pgsql-hackers@postgresql.org
Date: 2025-09-20T16:21:16Z
Lists: pgsql-hackers

Commits

Same data as JSON: GET /api/v1/messages/:b64id/commits the thread's linked commits as JSON, with link sources. API reference →
  1. Fix StatisticsObjIsVisibleExt() for pg_temp.

Attachments

StatisticsObjIsVisibleExt() lacks the "do not look in temp namespace" code of
the rest of the non-relation, non-type namespace searches.  Patch attached.
See its log messages for the consequences.

Incidentally, stats on temp tables do default to a permanent schema.  That
seems fine, though:

set search_path = public;
CREATE TEMP TABLE ab1 (a INTEGER, b INTEGER, c INTEGER);
CREATE STATISTICS s ON a, b FROM ab1;  -- creates public.s
\dX *.*