| PostgreSQL Reference Manual - Volume 3 - Server Administration Guide by The PostgreSQL Global Development Group Paperback (6"x9"), 204 pages ISBN 0954612043 RRP £13.95 ($24.95) Sales of this book support the PostgreSQL project! Get a printed copy>>> |
4.13 Preset Options
The following “parameters” are read-only, and are determined when PostgreSQL is compiled or when it is installed. As such, they have been excluded from the sample ‘postgresql.conf’ file. These options report various aspects of PostgreSQL behavior that may be of interest to certain applications, particularly administrative front-ends.
block_size(integer)-
Reports the size of a disk block. It is determined by the value
of
BLCKSZwhen building the server. The default value is 8192 bytes. The meaning of some configuration variables (such asshared_buffers) is influenced byblock_size. See section 4.4 Resource Consumption for information. integer_datetimes(boolean)-
Reports whether PostgreSQL was built
with support for 64-bit-integer dates and times. It is set by
configuring with
--enable-integer-datetimeswhen building PostgreSQL. The default value isoff. lc_collate(string)- Reports the locale in which sorting of textual data is done. See section 8.1 Locale Support for more information. The value is determined when the database cluster is initialized.
lc_ctype(string)-
Reports the locale that determines character classifications.
See section 8.1 Locale Support for more information.
The value is determined when the database cluster is initialized.
Ordinarily this will be the same as
lc_collate, but for special applications it might be set differently. max_function_args(integer)-
Reports the maximum number of function arguments. It is determined by
the value of
FUNC_MAX_ARGSwhen building the server. The default value is 100 arguments. max_identifier_length(integer)-
Reports the maximum identifier length. It is determined as one
less than the value of
NAMEDATALENwhen building the server. The default value ofNAMEDATALENis 64; therefore the defaultmax_identifier_lengthis 63 bytes. max_index_keys(integer)-
Reports the maximum number of index keys. It is determined by
the value of
INDEX_MAX_KEYSwhen building the server. The default value is 32 keys. server_encoding(string)-
Reports the database encoding (character set).
It is determined when the database is created. Ordinarily,
clients need only be concerned with the value of
client_encoding. server_version(string)-
Reports the version number of the server. It is determined by the
value of
PG_VERSIONwhen building the server. server_version_num(integer)-
Reports the version number of the server as an integer. It is determined
by the value of
PG_VERSION_NUMwhen building the server.
| ISBN 0954612043 | PostgreSQL Reference Manual - Volume 3 - Server Administration Guide | See the print edition |