mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
Adjust examples to avoid using keywords as identifiers, per Honda Shigehiro.
This commit is contained in:
@@ -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
|
||||
-->
|
||||
|
||||
@@ -94,9 +94,9 @@ RELEASE [ SAVEPOINT ] <replaceable>savepoint_name</replaceable>
|
||||
To establish and later destroy a savepoint:
|
||||
<programlisting>
|
||||
BEGIN;
|
||||
INSERT INTO table VALUES (3);
|
||||
INSERT INTO table1 VALUES (3);
|
||||
SAVEPOINT my_savepoint;
|
||||
INSERT INTO table VALUES (4);
|
||||
INSERT INTO table1 VALUES (4);
|
||||
RELEASE SAVEPOINT my_savepoint;
|
||||
COMMIT;
|
||||
</programlisting>
|
||||
|
Reference in New Issue
Block a user