Disallow the combination VACUUM FULL FREEZE for safety's sake, for the

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

Commit: e9c03c3b1b6d14e48fa1cfbb5831a9a03a0c0ab7
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2004-12-02T19:28:49Z
Releases: 8.0.0
Disallow the combination VACUUM FULL FREEZE for safety's sake, for the
reasons I outlined in pghackers a few days ago.

Also, undo someone's overly optimistic decision to reduce tuple state
checks from if (...) elog() to Asserts.  If I trusted this code more,
I might think it was a good idea to disable these checks in production
installations.  But I don't.

Files

PathChange+/−
doc/src/sgml/manage-ag.sgml modified +2 −3
doc/src/sgml/ref/vacuum.sgml modified +3 −3
src/backend/commands/vacuum.c modified +90 −49