Thread
Commits
-
Make more use of RELKIND_HAS_STORAGE()
- ffd2582297b8 14.0 landed
-
Make more use of RELKIND_HAS_STORAGE()
Peter Eisentraut <peter.eisentraut@2ndquadrant.com> — 2020-06-05T09:05:02Z
This is a patch to make use of RELKIND_HAS_STORAGE() where appropriate, instead of listing out the relkinds individually. No behavior change is intended. This was originally part of the patch from [0], but it seems worth moving forward independently. [0]: https://www.postgresql.org/message-id/flat/dc35a398-37d0-75ce-07ea-1dd71d98f8ec%402ndquadrant.com -- Peter Eisentraut http://www.2ndQuadrant.com/ PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
-
Re: Make more use of RELKIND_HAS_STORAGE()
Tom Lane <tgl@sss.pgh.pa.us> — 2020-06-05T16:05:07Z
Peter Eisentraut <peter.eisentraut@2ndquadrant.com> writes: > This is a patch to make use of RELKIND_HAS_STORAGE() where appropriate, > instead of listing out the relkinds individually. No behavior change is > intended. > This was originally part of the patch from [0], but it seems worth > moving forward independently. Passes eyeball examination. I did not try to search for other places where RELKIND_HAS_STORAGE should be used. regards, tom lane
-
Re: Make more use of RELKIND_HAS_STORAGE()
Peter Eisentraut <peter.eisentraut@2ndquadrant.com> — 2020-06-12T07:16:04Z
On 2020-06-05 18:05, Tom Lane wrote: > Peter Eisentraut <peter.eisentraut@2ndquadrant.com> writes: >> This is a patch to make use of RELKIND_HAS_STORAGE() where appropriate, >> instead of listing out the relkinds individually. No behavior change is >> intended. >> This was originally part of the patch from [0], but it seems worth >> moving forward independently. > > Passes eyeball examination. I did not try to search for other places > where RELKIND_HAS_STORAGE should be used. committed -- Peter Eisentraut http://www.2ndQuadrant.com/ PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
-
Re: Make more use of RELKIND_HAS_STORAGE()
Michael Paquier <michael@paquier.xyz> — 2020-06-12T07:22:59Z
On Fri, Jun 12, 2020 at 09:16:04AM +0200, Peter Eisentraut wrote: > committed Yeah! -- Michael