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
d6bc885b
Commit
d6bc885b
authored
Sep 13, 2005
by
Neil Conway
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor SGML markup fixes.
parent
c93912b7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
20 deletions
+21
-20
doc/src/sgml/config.sgml
doc/src/sgml/config.sgml
+15
-14
doc/src/sgml/datatype.sgml
doc/src/sgml/datatype.sgml
+2
-2
doc/src/sgml/ref/alter_sequence.sgml
doc/src/sgml/ref/alter_sequence.sgml
+4
-4
No files found.
doc/src/sgml/config.sgml
View file @
d6bc885b
<!--
$PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.1
6 2005/09/13 01:51:18 alvherre
Exp $
$PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.1
7 2005/09/13 15:24:56 neilc
Exp $
-->
<chapter Id="runtime-config">
<title>Run-time Configuration</title>
...
...
@@ -1715,20 +1715,20 @@ archive_command = 'copy "%p" /mnt/server/archivedir/"%f"' # Windows
<para>
Sets the planner's assumption about the effective size of the
disk cache that is available to a single index scan. This is
factored into estimates of the cost of using an index; a
higher
value makes it more likely index scans will be used, a lower
value makes it more likely sequential scans will be used. When
setting this parameter you should consider both
factored into estimates of the cost of using an index; a
higher value makes it more likely index scans will be used, a
lower value makes it more likely sequential scans will be
used. When
setting this parameter you should consider both
<productname>PostgreSQL</productname>'s shared buffers and the
portion of the kernel's disk cache that will be used for
<productname>PostgreSQL</productname> data files. Also, take
into
account the expected number of concurrent queries using different
indexes, since they will have to share the available space.
This parameter has no effect on the size of shared memory
allocated by PostgreSQL, nor does it reserve kernel disk cache;
it is used only for estimation purposes.
The value is measured in disk pages, which are
normally 8192 bytes each. The default is 1000.
<productname>PostgreSQL</productname> data files. Also, take
into account the expected number of concurrent queries using
different indexes, since they will have to share the available
space. This parameter has no effect on the size of shared
memory allocated by <productname>PostgreSQL</productname>, nor
does it reserve kernel disk cache; it is used only for
estimation purposes. The value is measured in disk pages,
which are
normally 8192 bytes each. The default is 1000.
</para>
</listitem>
</varlistentry>
...
...
@@ -3662,7 +3662,8 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir'
determines whether OIDs will be included in tables created by
<command>SELECT INTO</command>. In <productname>PostgreSQL</>
8.1 <varname>default_with_oids</> is disabled by default; in
prior versions of PostgreSQL, it was on by default.
prior versions of <productname>PostgreSQL</productname>, it
was on by default.
</para>
<para>
...
...
doc/src/sgml/datatype.sgml
View file @
d6bc885b
<!--
$PostgreSQL: pgsql/doc/src/sgml/datatype.sgml,v 1.15
8 2005/05/30 19:32:44 momjian
Exp $
$PostgreSQL: pgsql/doc/src/sgml/datatype.sgml,v 1.15
9 2005/09/13 15:24:56 neilc
Exp $
-->
<chapter id="datatype">
...
...
@@ -1770,7 +1770,7 @@ January 8 04:05:06 1999 PST
literals be explicitly typed:
<programlisting>TIMESTAMP WITH TIME ZONE '2004-10-19 10:23:54+02'</programlisting>
If a literal is not explicitly indicated as being of <type>timestamp with time zone</type>,
PostgreSQL
will silently ignore any time zone indication in the literal.
<productname>PostgreSQL</productname>
will silently ignore any time zone indication in the literal.
That is, the resulting date/time value is derived from the date/time
fields in the input value, and is not adjusted for time zone.
</para>
...
...
doc/src/sgml/ref/alter_sequence.sgml
View file @
d6bc885b
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/alter_sequence.sgml,v 1.1
0 2005/08/01 16:11:14 tgl
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/alter_sequence.sgml,v 1.1
1 2005/09/13 15:24:57 neilc
Exp $
PostgreSQL documentation
-->
...
...
@@ -132,7 +132,7 @@ ALTER SEQUENCE <replaceable class="parameter">name</replaceable> SET SCHEMA <rep
</varlistentry>
<varlistentry>
<term>
CYCLE
</term>
<term>
<literal>CYCLE</literal>
</term>
<listitem>
<para>
The optional <literal>CYCLE</literal> key word may be used to enable
...
...
@@ -150,7 +150,7 @@ ALTER SEQUENCE <replaceable class="parameter">name</replaceable> SET SCHEMA <rep
</varlistentry>
<varlistentry>
<term>
NO CYCLE
</term>
<term>
<literal>NO CYCLE</literal>
</term>
<listitem>
<para>
If the optional <literal>NO CYCLE</literal> key word is
...
...
@@ -197,7 +197,7 @@ ALTER SEQUENCE serial RESTART WITH 105;
<para>
<command>ALTER SEQUENCE</command> will not immediately affect
<
literal
>nextval</> results in backends,
<
function
>nextval</> results in backends,
other than the current one, that have preallocated (cached) sequence
values. They will use up all cached values prior to noticing the changed
sequence parameters. The current backend will be affected immediately.
...
...
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