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
c5e0415a
Commit
c5e0415a
authored
Feb 26, 2006
by
Neil Conway
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor SGML work: add some more hyperlinks, where appropriate.
parent
4d39c6bc
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
23 additions
and
18 deletions
+23
-18
doc/src/sgml/ref/commit_prepared.sgml
doc/src/sgml/ref/commit_prepared.sgml
+3
-2
doc/src/sgml/ref/declare.sgml
doc/src/sgml/ref/declare.sgml
+4
-3
doc/src/sgml/ref/prepare.sgml
doc/src/sgml/ref/prepare.sgml
+3
-2
doc/src/sgml/ref/prepare_transaction.sgml
doc/src/sgml/ref/prepare_transaction.sgml
+10
-9
doc/src/sgml/ref/rollback_prepared.sgml
doc/src/sgml/ref/rollback_prepared.sgml
+3
-2
No files found.
doc/src/sgml/ref/commit_prepared.sgml
View file @
c5e0415a
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/commit_prepared.sgml,v 1.
1 2005/06/17 22:32:42 tgl
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/commit_prepared.sgml,v 1.
2 2006/02/26 03:20:46 neilc
Exp $
PostgreSQL documentation
-->
...
...
@@ -65,7 +65,8 @@ COMMIT PREPARED <replaceable class="PARAMETER">transaction_id</replaceable>
<para>
All currently available prepared transactions are listed in the
<structname>pg_prepared_xacts</> system view.
<link linkend="view-pg-prepared-xacts"><structname>pg_prepared_xacts</structname></link>
system view.
</para>
</refsect1>
...
...
doc/src/sgml/ref/declare.sgml
View file @
c5e0415a
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/declare.sgml,v 1.3
6 2006/02/12 20:31:58 tgl
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/declare.sgml,v 1.3
7 2006/02/26 03:20:46 neilc
Exp $
PostgreSQL documentation
-->
...
...
@@ -258,8 +258,9 @@ DECLARE <replaceable class="parameter">name</replaceable> [ BINARY ] [ INSENSITI
</para>
<para>
You can see all available cursors by querying the
<structname>pg_cursors</structname> system view.
You can see all available cursors by querying the <link
linkend="view-pg-cursors"><structname>pg_cursors</structname></link>
system view.
</para>
</refsect1>
...
...
doc/src/sgml/ref/prepare.sgml
View file @
c5e0415a
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/prepare.sgml,v 1.1
8 2006/01/15 22:18
:46 neilc Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/prepare.sgml,v 1.1
9 2006/02/26 03:20
:46 neilc Exp $
PostgreSQL documentation
-->
...
...
@@ -153,7 +153,8 @@ PREPARE <replaceable class="PARAMETER">name</replaceable> [ (<replaceable class=
<para>
You can see all available prepared statements of a session by querying the
<structname>pg_prepared_statements</> system view.
<link linkend="view-pg-prepared-statements"><structname>pg_prepared_statements</structname></link>
system view.
</para>
</refsect1>
...
...
doc/src/sgml/ref/prepare_transaction.sgml
View file @
c5e0415a
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/prepare_transaction.sgml,v 1.
3 2005/08/30 01:37:38 tgl
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/prepare_transaction.sgml,v 1.
4 2006/02/26 03:20:46 neilc
Exp $
PostgreSQL documentation
-->
...
...
@@ -37,11 +37,11 @@ PREPARE TRANSACTION <replaceable class="PARAMETER">transaction_id</replaceable>
</para>
<para>
Once prepared, a transaction can later be committed or rolled
back with <command>COMMIT PREPARED</command> or
<command>ROLLBACK PREPARED</command>, respectively. Those commands
can be issued from any session, not only the one that executed the
original transaction.
Once prepared, a transaction can later be committed or rolled
back
with <xref linkend="sql-commit-prepared" endterm="sql-commit-prepared-title">
or <xref linkend="sql-rollback-prepared" endterm="sql-rollback-prepared-title">,
respectively. Those commands can be issued from any session, not
o
nly the one that executed the o
riginal transaction.
</para>
<para>
...
...
@@ -82,8 +82,8 @@ PREPARE TRANSACTION <replaceable class="PARAMETER">transaction_id</replaceable>
<title>Notes</title>
<para>
This command must be used inside a transaction block. Use
<command>BEGIN</command
> to start one.
This command must be used inside a transaction block. Use
<xref
linkend="sql-begin" endterm="sql-begin-title"
> to start one.
</para>
<para>
...
...
@@ -104,7 +104,8 @@ PREPARE TRANSACTION <replaceable class="PARAMETER">transaction_id</replaceable>
<para>
All currently available prepared transactions are listed in the
<structname>pg_prepared_xacts</> system view.
<link linkend="view-pg-prepared-xacts"><structname>pg_prepared_xacts</structname></link>
system view.
</para>
<para>
...
...
doc/src/sgml/ref/rollback_prepared.sgml
View file @
c5e0415a
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/rollback_prepared.sgml,v 1.
1 2005/06/17 22:32:42 tgl
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/rollback_prepared.sgml,v 1.
2 2006/02/26 03:20:46 neilc
Exp $
PostgreSQL documentation
-->
...
...
@@ -65,7 +65,8 @@ ROLLBACK PREPARED <replaceable class="PARAMETER">transaction_id</replaceable>
<para>
All currently available prepared transactions are listed in the
<structname>pg_prepared_xacts</> system view.
<link linkend="view-pg-prepared-xacts"><structname>pg_prepared_xacts</structname></link>
system view.
</para>
</refsect1>
...
...
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