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
PostgreSQL documentation
-->
-->
...
@@ -65,7 +65,8 @@ COMMIT PREPARED <replaceable class="PARAMETER">transaction_id</replaceable>
...
@@ -65,7 +65,8 @@ COMMIT PREPARED <replaceable class="PARAMETER">transaction_id</replaceable>
<para>
<para>
All currently available prepared transactions are listed in the
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>
</refsect1>
</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
PostgreSQL documentation
-->
-->
...
@@ -258,8 +258,9 @@ DECLARE <replaceable class="parameter">name</replaceable> [ BINARY ] [ INSENSITI
...
@@ -258,8 +258,9 @@ DECLARE <replaceable class="parameter">name</replaceable> [ BINARY ] [ INSENSITI
</para>
</para>
<para>
<para>
You can see all available cursors by querying the
You can see all available cursors by querying the <link
<structname>pg_cursors</structname> system view.
linkend="view-pg-cursors"><structname>pg_cursors</structname></link>
system view.
</para>
</para>
</refsect1>
</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
PostgreSQL documentation
-->
-->
...
@@ -153,7 +153,8 @@ PREPARE <replaceable class="PARAMETER">name</replaceable> [ (<replaceable class=
...
@@ -153,7 +153,8 @@ PREPARE <replaceable class="PARAMETER">name</replaceable> [ (<replaceable class=
<para>
<para>
You can see all available prepared statements of a session by querying the
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>
</para>
</refsect1>
</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
PostgreSQL documentation
-->
-->
...
@@ -37,11 +37,11 @@ PREPARE TRANSACTION <replaceable class="PARAMETER">transaction_id</replaceable>
...
@@ -37,11 +37,11 @@ PREPARE TRANSACTION <replaceable class="PARAMETER">transaction_id</replaceable>
</para>
</para>
<para>
<para>
Once prepared, a transaction can later be committed or rolled
Once prepared, a transaction can later be committed or rolled
back
back with <command>COMMIT PREPARED</command> or
with <xref linkend="sql-commit-prepared" endterm="sql-commit-prepared-title">
<command>ROLLBACK PREPARED</command>, respectively. Those commands
or <xref linkend="sql-rollback-prepared" endterm="sql-rollback-prepared-title">,
can be issued from any session, not only the one that executed the
respectively. Those commands can be issued from any session, not
original transaction.
o
nly the one that executed the o
riginal transaction.
</para>
</para>
<para>
<para>
...
@@ -82,8 +82,8 @@ PREPARE TRANSACTION <replaceable class="PARAMETER">transaction_id</replaceable>
...
@@ -82,8 +82,8 @@ PREPARE TRANSACTION <replaceable class="PARAMETER">transaction_id</replaceable>
<title>Notes</title>
<title>Notes</title>
<para>
<para>
This command must be used inside a transaction block. Use
This command must be used inside a transaction block. Use
<xref
<command>BEGIN</command
> to start one.
linkend="sql-begin" endterm="sql-begin-title"
> to start one.
</para>
</para>
<para>
<para>
...
@@ -104,7 +104,8 @@ PREPARE TRANSACTION <replaceable class="PARAMETER">transaction_id</replaceable>
...
@@ -104,7 +104,8 @@ PREPARE TRANSACTION <replaceable class="PARAMETER">transaction_id</replaceable>
<para>
<para>
All currently available prepared transactions are listed in the
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>
<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
PostgreSQL documentation
-->
-->
...
@@ -65,7 +65,8 @@ ROLLBACK PREPARED <replaceable class="PARAMETER">transaction_id</replaceable>
...
@@ -65,7 +65,8 @@ ROLLBACK PREPARED <replaceable class="PARAMETER">transaction_id</replaceable>
<para>
<para>
All currently available prepared transactions are listed in the
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>
</refsect1>
</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