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
a70d0391
Commit
a70d0391
authored
Feb 19, 2010
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hot Standby documentation updates
Greg Smith
parent
a232f30f
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
75 additions
and
62 deletions
+75
-62
doc/src/sgml/backup.sgml
doc/src/sgml/backup.sgml
+2
-2
doc/src/sgml/ecpg.sgml
doc/src/sgml/ecpg.sgml
+2
-2
doc/src/sgml/func.sgml
doc/src/sgml/func.sgml
+3
-3
doc/src/sgml/high-availability.sgml
doc/src/sgml/high-availability.sgml
+65
-52
doc/src/sgml/installation.sgml
doc/src/sgml/installation.sgml
+2
-2
doc/src/sgml/unaccent.sgml
doc/src/sgml/unaccent.sgml
+1
-1
No files found.
doc/src/sgml/backup.sgml
View file @
a70d0391
<!-- $PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.14
1 2010/02/09 16:50:25 heikki
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.14
2 2010/02/19 00:15:25 momjian
Exp $ -->
<chapter id="backup">
<chapter id="backup">
<title>Backup and Restore</title>
<title>Backup and Restore</title>
...
@@ -126,7 +126,7 @@ psql <replaceable class="parameter">dbname</replaceable> < <replaceable class
...
@@ -126,7 +126,7 @@ psql <replaceable class="parameter">dbname</replaceable> < <replaceable class
execute after an SQL error is encountered. You might wish to run
execute after an SQL error is encountered. You might wish to run
<application>psql</application> with
<application>psql</application> with
the <literal>ON_ERROR_STOP</> variable set to alter that
the <literal>ON_ERROR_STOP</> variable set to alter that
behavio
u
r and have <application>psql</application> exit with an
behavior and have <application>psql</application> exit with an
exit status of 3 if an SQL error occurs:
exit status of 3 if an SQL error occurs:
<programlisting>
<programlisting>
psql --set ON_ERROR_STOP=on dbname < infile
psql --set ON_ERROR_STOP=on dbname < infile
...
...
doc/src/sgml/ecpg.sgml
View file @
a70d0391
<!-- $PostgreSQL: pgsql/doc/src/sgml/ecpg.sgml,v 1.9
6 2010/02/17 04:19:37 tgl
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/ecpg.sgml,v 1.9
7 2010/02/19 00:15:25 momjian
Exp $ -->
<chapter id="ecpg">
<chapter id="ecpg">
<title><application>ECPG</application> - Embedded <acronym>SQL</acronym> in C</title>
<title><application>ECPG</application> - Embedded <acronym>SQL</acronym> in C</title>
...
@@ -2882,7 +2882,7 @@ struct sqlname
...
@@ -2882,7 +2882,7 @@ struct sqlname
program and most of the additional functions of the <productname>Informix</productname> compatibility
program and most of the additional functions of the <productname>Informix</productname> compatibility
mode allow you to operate on those C host program types. Note however that
mode allow you to operate on those C host program types. Note however that
the extent of the compatibility is limited. It does not try to copy <productname>Informix</productname>
the extent of the compatibility is limited. It does not try to copy <productname>Informix</productname>
behavio
u
r; it allows you to do more or less the same operations and gives
behavior; it allows you to do more or less the same operations and gives
you functions that have the same name and the same basic behavior but it is
you functions that have the same name and the same basic behavior but it is
no drop-in replacement if you are using <productname>Informix</productname> at the moment. Moreover,
no drop-in replacement if you are using <productname>Informix</productname> at the moment. Moreover,
some of the data types are different. For example,
some of the data types are different. For example,
...
...
doc/src/sgml/func.sgml
View file @
a70d0391
<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.50
4 2010/02/16 22:34:42 tgl
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.50
5 2010/02/19 00:15:25 momjian
Exp $ -->
<chapter
id=
"functions"
>
<chapter
id=
"functions"
>
<title>
Functions and Operators
</title>
<title>
Functions and Operators
</title>
...
@@ -13801,8 +13801,8 @@ SELECT (pg_stat_file('filename')).modification;
...
@@ -13801,8 +13801,8 @@ SELECT (pg_stat_file('filename')).modification;
function,
<function>
suppress_redundant_updates_trigger
</>
,
function,
<function>
suppress_redundant_updates_trigger
</>
,
which will prevent any update
which will prevent any update
that does not actually change the data in the row from taking place, in
that does not actually change the data in the row from taking place, in
contrast to the normal behavio
u
r which always performs the update
contrast to the normal behavior which always performs the update
regardless of whether or not the data has changed. (This normal behavio
u
r
regardless of whether or not the data has changed. (This normal behavior
makes updates run faster, since no checking is required, and is also
makes updates run faster, since no checking is required, and is also
useful in certain cases.)
useful in certain cases.)
</para>
</para>
...
...
doc/src/sgml/high-availability.sgml
View file @
a70d0391
This diff is collapsed.
Click to expand it.
doc/src/sgml/installation.sgml
View file @
a70d0391
<
!-- $PostgreSQL: pgsql/doc/src/sgml/installation.sgml,v 1.34
1 2010/02/03 17:25:0
5 momjian Exp $ -->
<
!-- $PostgreSQL: pgsql/doc/src/sgml/installation.sgml,v 1.34
2 2010/02/19 00:15:2
5 momjian Exp $ -->
<
chapter
id
=
"installation"
>
<
chapter
id
=
"installation"
>
<
title
><
![%standalone-include[<productname>PostgreSQL</>]]>
<
title
><
![%standalone-include[<productname>PostgreSQL</>]]>
...
@@ -2237,7 +2237,7 @@ kill `cat /usr/local/pgsql/data/postmaster.pid`
...
@@ -2237,7 +2237,7 @@ kill `cat /usr/local/pgsql/data/postmaster.pid`
When implementing PostgreSQL version 8.1 on AIX 5.3, we
When implementing PostgreSQL version 8.1 on AIX 5.3, we
periodically ran into problems where the statistics collector
periodically ran into problems where the statistics collector
would <quote>mysteriously</quote> not come up successfully. This
would <quote>mysteriously</quote> not come up successfully. This
appears to be the result of unexpected behavio
u
r in the IPv6
appears to be the result of unexpected behavior in the IPv6
implementation. It looks like PostgreSQL and IPv6 do not play
implementation. It looks like PostgreSQL and IPv6 do not play
very well together at this time on AIX.
very well together at this time on AIX.
</para>
</para>
...
...
doc/src/sgml/unaccent.sgml
View file @
a70d0391
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
<filename>unaccent</> removes accents (diacritic signs) from a lexeme.
<filename>unaccent</> removes accents (diacritic signs) from a lexeme.
It's a filtering dictionary, that means its output is
It's a filtering dictionary, that means its output is
always passed to the next dictionary (if any), contrary to the standard
always passed to the next dictionary (if any), contrary to the standard
behavio
u
r. Currently, it supports most important accents from european
behavior. Currently, it supports most important accents from european
languages.
languages.
</para>
</para>
...
...
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