Re: 64-bit queryId?
Andres Freund <andres@anarazel.de>
From: Andres Freund <andres@anarazel.de>
To: Michael Paquier <michael.paquier@gmail.com>
Cc: Alexander Korotkov <a.korotkov@postgrespro.ru>, Tom Lane <tgl@sss.pgh.pa.us>, Peter Geoghegan <pg@bowt.ie>, Robert Haas <robertmhaas@gmail.com>, "Joshua D. Drake" <jd@commandprompt.com>, Greg Stark <stark@mit.edu>, "pgsql-hackers@postgresql.org" <pgsql-hackers@postgresql.org>
Date: 2017-10-03T08:12:11Z
Lists: pgsql-hackers
On 2017-10-03 17:06:20 +0900, Michael Paquier wrote: > On Tue, Oct 3, 2017 at 3:12 PM, Andres Freund <andres@anarazel.de> wrote: > > On 2017-10-03 03:07:09 +0300, Alexander Korotkov wrote: > >> On Tue, Oct 3, 2017 at 12:32 AM, Tom Lane <tgl@sss.pgh.pa.us> wrote: > >> +1, > >> I see 3 options there: > >> 1) Drop high-order bit, as you proposed. > >> 2) Allow negative queryIds. > >> 3) Implement unsigned 64-type. > > > > 4) use numeric, efficiency when querying is not a significant concern here > > 5) use a custom type that doesn't support arithmetic, similar to pg_lsn. > > Why not just returning a hexa-like text? Two reasons: First, it'd look fairly different to before, whereas 4/5 would probably just continue to work fairly transparently in a lot of cases. Secondly, what's the advantage in doing so over 4)? Greetings, Andres Freund
Commits
-
pg_stat_statements: Add a comment about the dangers of padding bytes.
- 2959213bf33c 11.0 landed
-
pg_stat_statements: Widen query IDs from 32 bits to 64 bits.
- cff440d36869 11.0 landed