Re: Updating to PostgreSQL 17.5

From: Paul Foerster <paul(dot)foerster(at)gmail(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Pgsql-General List <pgsql-general(at)lists(dot)postgresql(dot)org>
Subject: Re: Updating to PostgreSQL 17.5
Date: 2025-05-11 20:08:08
Message-ID: 158E731D-A29B-4E0D-8E3F-C0061BE7AAFB@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi Tom,

> On 11 May 2025, at 21:36, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
>
> Sorry --- it means BRIN indexes that use one of the "xxx_bloom_ops" opclasses.
>
> https://www.postgresql.org/docs/current/brin.html#BRIN-BUILTIN-OPCLASSES

Ah, so that'd reduce my monster query to:

select
concat ('reindex index "', schemaname, '"."', indexname, '";') as reindex_cmd
from
pg_indexes
where
indexdef ~ '_bloom_ops';

Thanks very much.

Paul

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Andrej 2025-05-11 20:59:35 deb http://apt.postgresql.org/pub/repos/apt/ bookworm-pgdg main 15
Previous Message Tom Lane 2025-05-11 19:36:09 Re: Updating to PostgreSQL 17.5