Explain dropdb can't use syscache because of TOAST
authorTomas Vondra <tomas.vondra@postgresql.org>
Mon, 19 Aug 2024 11:31:51 +0000 (13:31 +0200)
committerTomas Vondra <tomas.vondra@postgresql.org>
Mon, 19 Aug 2024 11:43:43 +0000 (13:43 +0200)
commitf6991cafa36ee8cb943a34f13452fd166b7907c2
tree3e91f8137188517dee9c33e64014a68456ef0cb6
parent9333174af47560677b62ae5025e4414f860a84a7
Explain dropdb can't use syscache because of TOAST

Add a comment explaining dropdb() can't rely on syscache. The issue with
flattened rows was fixed by commit 0f92b230f88b, but better to have
a clear explanation why the systable scan is necessary. The other places
doing in-place updates on pg_database have the same comment.

Suggestion and patch by Yugo Nagata. Backpatch to 12, same as the fix.

Author: Yugo Nagata
Backpatch-through: 12
Discussion: https://postgr.es/m/CAJTYsWWNkCt+-UnMhg=BiCD3Mh8c2JdHLofPxsW3m2dkDFw8RA@mail.gmail.com
src/backend/commands/dbcommands.c