Adjust examples to avoid using keywords as identifiers, per Honda Shigehiro.

This commit is contained in:
Tom Lane 2005-01-06 20:53:34 +00:00
parent 4717992b4e
commit 7507d594d2
2 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,5 @@
<!-- <!--
$PostgreSQL: pgsql/doc/src/sgml/ref/release_savepoint.sgml,v 1.3 2004/11/27 21:27:07 petere Exp $ $PostgreSQL: pgsql/doc/src/sgml/ref/release_savepoint.sgml,v 1.4 2005/01/06 20:53:34 tgl Exp $
PostgreSQL documentation PostgreSQL documentation
--> -->
@ -94,9 +94,9 @@ RELEASE [ SAVEPOINT ] <replaceable>savepoint_name</replaceable>
To establish and later destroy a savepoint: To establish and later destroy a savepoint:
<programlisting> <programlisting>
BEGIN; BEGIN;
INSERT INTO table VALUES (3); INSERT INTO table1 VALUES (3);
SAVEPOINT my_savepoint; SAVEPOINT my_savepoint;
INSERT INTO table VALUES (4); INSERT INTO table1 VALUES (4);
RELEASE SAVEPOINT my_savepoint; RELEASE SAVEPOINT my_savepoint;
COMMIT; COMMIT;
</programlisting> </programlisting>

View File

@ -1,5 +1,5 @@
<!-- <!--
$PostgreSQL: pgsql/doc/src/sgml/ref/savepoint.sgml,v 1.3 2004/09/20 00:04:19 neilc Exp $ $PostgreSQL: pgsql/doc/src/sgml/ref/savepoint.sgml,v 1.4 2005/01/06 20:53:34 tgl Exp $
PostgreSQL documentation PostgreSQL documentation
--> -->
@ -83,11 +83,11 @@ SAVEPOINT <replaceable>savepoint_name</replaceable>
after it was established: after it was established:
<programlisting> <programlisting>
BEGIN; BEGIN;
INSERT INTO table VALUES (1); INSERT INTO table1 VALUES (1);
SAVEPOINT my_savepoint; SAVEPOINT my_savepoint;
INSERT INTO table VALUES (2); INSERT INTO table1 VALUES (2);
ROLLBACK TO SAVEPOINT my_savepoint; ROLLBACK TO SAVEPOINT my_savepoint;
INSERT INTO table VALUES (3); INSERT INTO table1 VALUES (3);
COMMIT; COMMIT;
</programlisting> </programlisting>
The above transaction will insert the values 1 and 3, but not 2. The above transaction will insert the values 1 and 3, but not 2.
@ -97,9 +97,9 @@ COMMIT;
To establish and later destroy a savepoint: To establish and later destroy a savepoint:
<programlisting> <programlisting>
BEGIN; BEGIN;
INSERT INTO table VALUES (3); INSERT INTO table1 VALUES (3);
SAVEPOINT my_savepoint; SAVEPOINT my_savepoint;
INSERT INTO table VALUES (4); INSERT INTO table1 VALUES (4);
RELEASE SAVEPOINT my_savepoint; RELEASE SAVEPOINT my_savepoint;
COMMIT; COMMIT;
</programlisting> </programlisting>