|
1 |
| -<!-- $PostgreSQL: pgsql/doc/src/sgml/catalogs.sgml,v 2.134 2006/09/22 23:20:13 tgl Exp $ --> |
| 1 | +<!-- $PostgreSQL: pgsql/doc/src/sgml/catalogs.sgml,v 2.135 2006/10/23 18:10:30 petere Exp $ --> |
2 | 2 | <!--
|
3 | 3 | Documentation of the system catalogs, directed toward PostgreSQL developers
|
4 | 4 | -->
|
|
405 | 405 | <entry><structfield>amclusterable</structfield></entry>
|
406 | 406 | <entry><type>bool</type></entry>
|
407 | 407 | <entry></entry>
|
408 |
| - <entry>Can an index of this type be CLUSTERed on?</entry> |
| 408 | + <entry>Can an index of this type be clustered on?</entry> |
409 | 409 | </row>
|
410 | 410 |
|
411 | 411 | <row>
|
|
496 | 496 | <entry><structfield>amoptions</structfield></entry>
|
497 | 497 | <entry><type>regproc</type></entry>
|
498 | 498 | <entry><literal><link linkend="catalog-pg-proc"><structname>pg_proc</structname></link>.oid</literal></entry>
|
499 |
| - <entry>Function to parse and validate reloptions for an index</entry> |
| 499 | + <entry>Function to parse and validate <structfield>reloptions</> for an index</entry> |
500 | 500 | </row>
|
501 | 501 |
|
502 | 502 | </tbody>
|
|
1209 | 1209 | <entry><structfield>vac_scale_factor</structfield></entry>
|
1210 | 1210 | <entry><type>float4</type></entry>
|
1211 | 1211 | <entry></entry>
|
1212 |
| - <entry>Multiplier for reltuples to add to |
| 1212 | + <entry>Multiplier for <structfield>reltuples</> to add to |
1213 | 1213 | <structfield>vac_base_thresh</></entry>
|
1214 | 1214 | </row>
|
1215 | 1215 |
|
|
1224 | 1224 | <entry><structfield>anl_scale_factor</structfield></entry>
|
1225 | 1225 | <entry><type>float4</type></entry>
|
1226 | 1226 | <entry></entry>
|
1227 |
| - <entry>Multiplier for reltuples to add to |
| 1227 | + <entry>Multiplier for <structfield>reltuples</> to add to |
1228 | 1228 | <structfield>anl_base_thresh</></entry>
|
1229 | 1229 | </row>
|
1230 | 1230 |
|
|
2043 | 2043 | operation. All rows inserted or deleted by transaction IDs before this one
|
2044 | 2044 | have been marked as known good or deleted. This
|
2045 | 2045 | is used to determine when commit-log space can be recycled.
|
2046 |
| - If InvalidTransactionId, then the minimum is unknown and can be |
| 2046 | + If <symbol>InvalidTransactionId</symbol>, then the minimum is unknown and can be |
2047 | 2047 | determined by scanning <structname>pg_class</>.<structfield>relvacuumxid</>.
|
2048 | 2048 | </entry>
|
2049 | 2049 | </row>
|
|
2058 | 2058 | relabeled with a permanent (<quote>frozen</>) transaction ID in this
|
2059 | 2059 | database. This is useful to check whether a database must be
|
2060 | 2060 | vacuumed soon to avoid transaction ID wrap-around problems.
|
2061 |
| - If InvalidTransactionId, then the minimum is unknown and can be |
| 2061 | + If <symbol>InvalidTransactionId</symbol>, then the minimum is unknown and can be |
2062 | 2062 | determined by scanning <structname>pg_class</>.<structfield>relminxid</>.
|
2063 | 2063 | </entry>
|
2064 | 2064 | </row>
|
|
3353 | 3353 | <entry><literal><link linkend="catalog-pg-type"><structname>pg_type</structname></link>.oid</literal></entry>
|
3354 | 3354 | <entry>
|
3355 | 3355 | An array with the data types of the function arguments. This includes
|
3356 |
| - only input arguments (including INOUT arguments), and thus represents |
| 3356 | + only input arguments (including <literal>INOUT</literal> arguments), and thus represents |
3357 | 3357 | the call signature of the function.
|
3358 | 3358 | </entry>
|
3359 | 3359 | </row>
|
|
3364 | 3364 | <entry><literal><link linkend="catalog-pg-type"><structname>pg_type</structname></link>.oid</literal></entry>
|
3365 | 3365 | <entry>
|
3366 | 3366 | An array with the data types of the function arguments. This includes
|
3367 |
| - all arguments (including OUT and INOUT arguments); however, if all the |
| 3367 | + all arguments (including <literal>OUT</literal> and <literal>INOUT</literal> arguments); however, if all the |
3368 | 3368 | arguments are IN arguments, this field will be null.
|
3369 | 3369 | Note that subscripting is 1-based, whereas for historical reasons
|
3370 | 3370 | <structfield>proargtypes</> is subscripted from 0.
|
|
3377 | 3377 | <entry></entry>
|
3378 | 3378 | <entry>
|
3379 | 3379 | An array with the modes of the function arguments, encoded as
|
3380 |
| - <literal>i</literal> for IN arguments, |
3381 |
| - <literal>o</literal> for OUT arguments, |
3382 |
| - <literal>b</literal> for INOUT arguments. |
3383 |
| - If all the arguments are IN arguments, this field will be null. |
| 3380 | + <literal>i</literal> for <literal>IN</> arguments, |
| 3381 | + <literal>o</literal> for <literal>OUT</> arguments, |
| 3382 | + <literal>b</literal> for <literal>INOUT</> arguments. |
| 3383 | + If all the arguments are <literal>IN</literal> arguments, this field will be null. |
3384 | 3384 | Note that subscripts correspond to positions of
|
3385 | 3385 | <structfield>proallargtypes</> not <structfield>proargtypes</>.
|
3386 | 3386 | </entry>
|
|
5031 | 5031 |
|
5032 | 5032 | <para>
|
5033 | 5033 | Advisory locks can be acquired on keys consisting of either a single
|
5034 |
| - bigint value or two integer values. A bigint key is displayed with its |
| 5034 | + <type>bigint</type> value or two integer values. A <type>bigint</type> key is displayed with its |
5035 | 5035 | high-order half in the <structfield>classid</> column, its low-order half
|
5036 | 5036 | in the <structfield>objid</> column, and <structfield>objsubid</> equal
|
5037 | 5037 | to 1. Integer keys are displayed with the first key in the
|
|
0 commit comments