Re: making relfilenodes 56 bits
Dilip Kumar <dilipbalaut@gmail.com>
From: Dilip Kumar <dilipbalaut@gmail.com>
To: Tom Lane <tgl@sss.pgh.pa.us>
Cc: Alvaro Herrera <alvherre@alvh.no-ip.org>,
Robert Haas <robertmhaas@gmail.com>, Andres Freund <andres@anarazel.de>, Heikki Linnakangas <hlinnaka@iki.fi>, Thomas Munro <thomas.munro@gmail.com>,
pgsql-hackers <pgsql-hackers@postgresql.org>, vignesh C <vignesh21@gmail.com>
Date: 2022-08-01T05:20:59Z
Lists: pgsql-hackers
On Sat, Jul 30, 2022 at 1:35 AM Tom Lane <tgl@sss.pgh.pa.us> wrote: > > Alvaro Herrera <alvherre@alvh.no-ip.org> writes: > > On 2022-Jul-29, Robert Haas wrote: > >> Yeah, if we think it's OK to pass around structs, then that seems like > >> the right solution. Otherwise functions that take RelFileLocator > >> should be changed to take const RelFileLocator * and we should adjust > >> elsewhere accordingly. > > > We do that in other places. See get_object_address() for another > > example. Now, I don't see *why* they do it. > > If it's a big struct then avoiding copying it is good; but RelFileLocator > isn't that big. > > While researching that statement I did happen to notice that no one has > bothered to update the comment immediately above struct RelFileLocator, > and it is something that absolutely does require attention if there > are plans to make RelFileNumber something other than 32 bits. I think we need to update this comment in the patch where we are making RelFileNumber 64 bits wide. But as such I do not see a problem in using RelFileLocator directly as key because if we make RelFileNumber 64 bits then its structure will already be 8 byte aligned so there should not be any padding. However, if we use some other structure as key which contain RelFileLocator i.e. RelFileLocatorBackend then there will be a problem. So for handling that issue while computing the key size (wherever we have RelFileLocatorBackend as key) I have avoided the padding bytes in size by introducing this new macro[1]. [1] #define SizeOfRelFileLocatorBackend \ (offsetof(RelFileLocatorBackend, backend) + sizeof(BackendId)) -- Regards, Dilip Kumar EnterpriseDB: http://www.enterprisedb.com
Commits
-
Fix typos in comments, code and documentation
- 33ab0a2a527e 16.0 cited
-
Increase width of RelFileNumbers from 32 bits to 56 bits.
- 05d4cbf9b6ba 16.0 landed
-
Move RelFileNumber declarations to common/relpath.h.
- 2f47715cc864 16.0 landed
-
Include RelFileLocator fields individually in BufferTag.
- 82ac34db2036 16.0 landed
-
Convert macros to static inline functions (buf_internals.h)
- 3ac88fddd92c 16.0 landed
-
Remove the restriction that the relmap must be 512 bytes.
- d8cd0c6c95c0 16.0 landed
-
Change internal RelFileNode references to RelFileNumber or RelFileLocator.
- b0a55e43299c 16.0 landed
-
Reorder subskiplsn in pg_subscription to avoid alignment issues.
- 79b716cfb7a1 15.0 cited
-
Fix DROP {DATABASE,TABLESPACE} on Windows.
- 4eb2176318d0 15.0 cited
-
Restructure smgr API as per recent proposal. smgr no longer depends on
- 87bd95638552 8.0.0 cited