Fix WAL replay of truncate operations to cope with the possibility that the

Tom Lane <tgl@sss.pgh.pa.us>

Commit: 85506ffbd51e15dffbd307e4d1060cfffb24c9e0
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2007-07-20T16:29:59Z
Releases: 8.2.5
Fix WAL replay of truncate operations to cope with the possibility that the
truncated relation was deleted later in the WAL sequence.  Since replay
normally auto-creates a relation upon its first reference by a WAL log entry,
failure is seen only if the truncate entry happens to be the first reference
after the checkpoint we're restarting from; which is a pretty unusual case but
of course not impossible.  Fix by making truncate entries auto-create like
the other ones do.  Per report and test case from Dharmendra Goyal.

Files

PathChange+/−
src/backend/storage/smgr/smgr.c modified +9 −1