On Thu, 6 Dec 2007, Reece Hart wrote:
Bug reference: 3801 PostgreSQL version: 8.2.5 Description: max_fsm_pages postgresql.conf default != guc.c default Details: The guc.c hardwired default for max_fsm_pages is 20000. In postgresql.conf (and .sample), the default is claimed to be 1638400. I don't know which is correct.
You need to consider the units. guc.c is in "number of pages", while postgresql.conf is in kB. Since the page size is 8192, these are equivalent.
Kris Jurka ---------------------------(end of broadcast)--------------------------- TIP 6: explain analyze is your friend