WAL-log the creation of the init fork of unlogged indexes.
commit3142a8845b44699761e41955a4e97ccee07c3734
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Thu, 6 Jul 2023 14:25:29 +0000 (6 17:25 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Thu, 6 Jul 2023 14:25:29 +0000 (6 17:25 +0300)
treecdb76ae94694b5244c1e18176b46eb32c00b43c5
parent69a674a170058e63e8178aec8a36a673efce8801
WAL-log the creation of the init fork of unlogged indexes.

We create a file, so we better WAL-log it. In practice, all the
built-in index AMs and all extensions that I'm aware of write a
metapage to the init fork, which is WAL-logged, and replay of the
metapage implicitly creates the fork too. But if ambuildempty() didn't
write any page, we would miss it.

This can be seen with dummy_index_am. Set up replication, create a
'dummy_index_am' index on an unlogged table, and look at the files
created in the replica: the init fork is not created on the
replica. Dummy_index_am doesn't do anything with the relation files,
however, so it doesn't lead to any user-visible errors.

Backpatch to all supported versions.

Reviewed-by: Robert Haas
Discussion: https://www.postgresql.org/message-id/6e5bbc08-cdfc-b2b3-9e23-1a914b9850a9%40iki.fi
src/backend/catalog/index.c