Disallow setting fillfactor for TOAST tables.
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Sat, 4 Apr 2009 00:45:02 +0000 (00:45 +0000)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Sat, 4 Apr 2009 00:45:02 +0000 (00:45 +0000)
commit1c855f01ea55d7c19099165dcb35003c8fc3364a
treea32eae84cb9dca847ae810794984658ea2eaff89
parent591f2944de633f201d97b7b17659569cd5b29d96
Disallow setting fillfactor for TOAST tables.

To implement this without almost duplicating the reloption table, treat
relopt_kind as a bitmask instead of an integer value.  This decreases the
range of allowed values, but it's not clear that there's need for that much
values anyway.

This patch also makes heap_reloptions explicitly a no-op for relation kinds
other than heap and TOAST tables.

Patch by ITAGAKI Takahiro with minor edits from me.  (In particular I removed
the bit about adding relation kind to an error message, which I intend to
commit separately.)
src/backend/access/common/reloptions.c
src/include/access/reloptions.h