diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2007-11-05 14:11:17 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2007-11-05 14:11:17 +0000 |
commit | a06ce21c7240e1bb2430af9a40fa193a6b7fc771 (patch) | |
tree | 66a36f552efad00c18f06b95f76d17cd8e1a29f3 /src | |
parent | f00e542746c40efeb2b777b93d41da74dba3f0bc (diff) | |
download | postgresql-a06ce21c7240e1bb2430af9a40fa193a6b7fc771.tar.gz postgresql-a06ce21c7240e1bb2430af9a40fa193a6b7fc771.zip |
Add a note about another issue that needs to be considered before
changing the TOAST size thresholds.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/access/tuptoaster.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/access/tuptoaster.h b/src/include/access/tuptoaster.h index ea870aff110..27da923cd82 100644 --- a/src/include/access/tuptoaster.h +++ b/src/include/access/tuptoaster.h @@ -6,7 +6,7 @@ * * Copyright (c) 2000-2007, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/include/access/tuptoaster.h,v 1.35 2007/04/06 04:21:43 tgl Exp $ + * $PostgreSQL: pgsql/src/include/access/tuptoaster.h,v 1.36 2007/11/05 14:11:17 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -40,7 +40,8 @@ * * XXX while these can be modified without initdb, some thought needs to be * given to needs_toast_table() in toasting.c before unleashing random - * changes. + * changes. Also see LOBLKSIZE in large_object.h, which can *not* be + * changed without initdb. */ #define TOAST_TUPLES_PER_PAGE 4 |