Re: BUG #16285: bt_metap fails with value is out of range for type integer
Andres Freund <andres@anarazel.de>
From: Andres Freund <andres@anarazel.de>
To: Peter Geoghegan <pg@bowt.ie>
Cc: Victor Yegorov <vyegorov@gmail.com>, Alvaro Herrera <alvherre@2ndquadrant.com>, PostgreSQL mailing lists <pgsql-bugs@lists.postgresql.org>
Date: 2020-03-09T22:35:57Z
Lists: pgsql-bugs
Hi, On 2020-03-09 15:31:38 -0700, Peter Geoghegan wrote: > On Mon, Mar 9, 2020 at 3:09 PM Andres Freund <andres@anarazel.de> wrote: > > ISTM that we need some fix for the back-branches too. Being unable to > > look at some indexes till 12 has aged out doesn't strike me as good. > > Actually, the oldest_xact field was added in Postgres 11. What do you mean? Since 12 is the newest release affected, we'd potentially (and with increasing likelihood due to clusters living longer) have the problem till 12 is not supported anymore. What am I missing? > > How about simply printing the wrapped value? That's far from perfect, of > > course, but clearly better than the current situation in the back > > branches. > > Would you be happy if we always raised a NOTICE that had information > about the affected fields? I don't think that we should try to be > clever and only do it when we know that it will fail. We should admit > that it's broken with a HINT that gets associated with the NOTICE, in > order to discourage relying on the number within automated tools. I'd just do the s/%u/%d/. > If we were to do this, it would probably only be necessary to > backpatch to Postgres 11 and 12. Those are the only stable releases > with the oldest_xact field. In practice, it is highly likely to be the > thing that causes problems. We will report the root block number at a > negative block number when it happens to exceed 2^31-1, but that > condition is almost impossible to hit in practice, even when the index > size is close to the system-wide limit of relation size. That's why > nobody has complained about it in all these years. pg_class.relpages is also reported as a signed integer :(. Since btm_root/fastroot use %d, it'll just have similar wrapping behaviour. Greetings, Andres Freund
Commits
-
Paper over bt_metap() oldest_xact bug in backbranches.
- 393b449f1a64 12.3 landed
- c788115b5eb5 11.8 landed
-
pageinspect: Fix types used for bt_metap() columns.
- 691e8b2e1889 13.0 landed
-
Skip full index scan during cleanup of B-tree indexes when possible
- 857f9c36cda5 11.0 cited
-
pg_stat_statements: Widen query IDs from 32 bits to 64 bits.
- cff440d36869 11.0 cited