diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-12-18 18:56:29 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-12-18 18:56:29 +0000 |
commit | 93b4f0ff7711d42b8c10e48b0a7575e2847e30b3 (patch) | |
tree | 407a0358962555c7dd1bc475671eb1d1a977137e /doc/src | |
parent | 6b4fe0460cac52973c16c279cfc5d89b066c1fe0 (diff) | |
download | postgresql-93b4f0ff7711d42b8c10e48b0a7575e2847e30b3.tar.gz postgresql-93b4f0ff7711d42b8c10e48b0a7575e2847e30b3.zip |
Set pg_am.amstrategies to zero for index AMs that don't have fixed
operator strategy numbers, ie, GiST and GIN. This is almost cosmetic
enough to not need a catversion bump, but since the opr_sanity regression
test has to change in sync with the catalog entry, I figured I'd better
do one.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/catalogs.sgml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml index 4d66020a344..ee5896b2818 100644 --- a/doc/src/sgml/catalogs.sgml +++ b/doc/src/sgml/catalogs.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/catalogs.sgml,v 2.137 2006/11/12 06:25:37 neilc Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/catalogs.sgml,v 2.138 2006/12/18 18:56:28 tgl Exp $ --> <!-- Documentation of the system catalogs, directed toward PostgreSQL developers --> @@ -347,7 +347,9 @@ <entry><structfield>amstrategies</structfield></entry> <entry><type>int2</type></entry> <entry></entry> - <entry>Number of operator strategies for this access method</entry> + <entry>Number of operator strategies for this access method, + or zero if access method does not have a fixed set of operator + strategies</entry> </row> <row> |