Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
f0943278
Commit
f0943278
authored
Dec 06, 2003
by
Joe Conway
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Documentation update for previously committed changes: read-only GUC variables
and pg_settings view.
parent
79273cc7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
95 additions
and
2 deletions
+95
-2
doc/src/sgml/catalogs.sgml
doc/src/sgml/catalogs.sgml
+19
-1
doc/src/sgml/runtime.sgml
doc/src/sgml/runtime.sgml
+76
-1
No files found.
doc/src/sgml/catalogs.sgml
View file @
f0943278
<!--
<!--
Documentation of the system catalogs, directed toward PostgreSQL developers
Documentation of the system catalogs, directed toward PostgreSQL developers
$PostgreSQL: pgsql/doc/src/sgml/catalogs.sgml,v 2.8
0 2003/11/29 19:51:36 pgsql
Exp $
$PostgreSQL: pgsql/doc/src/sgml/catalogs.sgml,v 2.8
1 2003/12/06 23:10:21 joe
Exp $
-->
-->
<chapter id="catalogs">
<chapter id="catalogs">
...
@@ -4050,6 +4050,24 @@
...
@@ -4050,6 +4050,24 @@
<entry></entry>
<entry></entry>
<entry>current value of the parameter</entry>
<entry>current value of the parameter</entry>
</row>
</row>
<row>
<entry><structfield>category</structfield></entry>
<entry><type>text</type></entry>
<entry></entry>
<entry>logical group of the parameter</entry>
</row>
<row>
<entry><structfield>short_desc</structfield></entry>
<entry><type>text</type></entry>
<entry></entry>
<entry>a brief description of the parameter</entry>
</row>
<row>
<entry><structfield>extra_desc</structfield></entry>
<entry><type>text</type></entry>
<entry></entry>
<entry>additional, more detailed, information about the parameter</entry>
</row>
<row>
<row>
<entry><structfield>context</structfield></entry>
<entry><structfield>context</structfield></entry>
<entry><type>text</type></entry>
<entry><type>text</type></entry>
...
...
doc/src/sgml/runtime.sgml
View file @
f0943278
<!--
<!--
$PostgreSQL: pgsql/doc/src/sgml/runtime.sgml,v 1.22
5 2003/12/04 21:24:56 peter
e Exp $
$PostgreSQL: pgsql/doc/src/sgml/runtime.sgml,v 1.22
6 2003/12/06 23:10:23 jo
e Exp $
-->
-->
<Chapter Id="runtime">
<Chapter Id="runtime">
...
@@ -2517,6 +2517,81 @@ dynamic_library_path = '/usr/local/lib/postgresql:/home/my_project/lib:$libdir'
...
@@ -2517,6 +2517,81 @@ dynamic_library_path = '/usr/local/lib/postgresql:/home/my_project/lib:$libdir'
</sect3>
</sect3>
</sect2>
</sect2>
<sect2 id="runtime-config-compiler">
<title>Compiled-in Options</title>
<para>
The following options are available read-only, and are determined
at source code compile time. As such, they have been excluded from the
sample <filename>postgresql.conf</> file. They determine various aspects
of <productname>PostgreSQL</productname> behavior that may be of interest
to certain applications, particularly administrative front-ends.
</para>
<variablelist>
<varlistentry>
<term><varname>block_size</varname> (<type>integer</type>)</term>
<listitem>
<para>
Shows the size of a disk block. It is determined by the value
of <literal>BLCKSZ</> when building the server. The default
value is 8192 bytes. The <varname>shared_buffers</varname> setting is
influenced by <varname>block_size</varname>. See
<xref linkend="runtime-config-resource"> for information.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><varname>integer_datetimes</varname> (<type>boolean</type>)</term>
<listitem>
<para>
Shows <literal>on</literal> if <productname>PostgreSQL</productname>
was built with support for 64-bit integer dates and times. It is
set by configuring with <literal>--enable-integer-datetimes</literal>.
The default value is <literal>off</literal>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><varname>max_function_args</varname> (<type>integer</type>)</term>
<listitem>
<para>
Shows the maximum number of function arguments. It is determined by
the value of <literal>FUNC_MAX_ARGS</> when building the server. The
default value is 32.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><varname>max_identifier_length</varname> (<type>integer</type>)</term>
<listitem>
<para>
Shows the maximum identifier length. It is determined as one less than
the value of <literal>NAMEDATALEN</> when building the server. The
default value of NAMEDATALEN is 64; therefore the default
<varname>max_identifier_length</varname> is 63.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><varname>max_index_keys</varname> (<type>integer</type>)</term>
<listitem>
<para>
Shows the maximum number of index keys. It is determined by
the value of <literal>INDEX_MAX_KEYS</> when building the server. The
default value is 32.
</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<sect2 id="runtime-config-developer">
<sect2 id="runtime-config-developer">
<title>Developer Options</title>
<title>Developer Options</title>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment