@@ -90,7 +90,7 @@ ____________________________________________________________________________-->
90
90
<!--==========================orignal english content==========================
91
91
<para>
92
92
From the point of view of the issuing session, <command>PREPARE
93
- TRANSACTION</command> is not unlike a <command>ROLLBACK</> command:
93
+ TRANSACTION</command> is not unlike a <command>ROLLBACK</command > command:
94
94
after executing it, there is no active current transaction, and the
95
95
effects of the prepared transaction are no longer visible. (The effects
96
96
will become visible again if the transaction is committed.)
@@ -106,7 +106,7 @@ ____________________________________________________________________________-->
106
106
<!--==========================orignal english content==========================
107
107
<para>
108
108
If the <command>PREPARE TRANSACTION</command> command fails for any
109
- reason, it becomes a <command>ROLLBACK</>: the current transaction
109
+ reason, it becomes a <command>ROLLBACK</command >: the current transaction
110
110
is canceled.
111
111
</para>
112
112
____________________________________________________________________________-->
@@ -132,7 +132,7 @@ ____________________________________________________________________________-->
132
132
<!--==========================orignal english content==========================
133
133
<para>
134
134
An arbitrary identifier that later identifies this transaction for
135
- <command>COMMIT PREPARED</> or <command>ROLLBACK PREPARED</>.
135
+ <command>COMMIT PREPARED</command > or <command>ROLLBACK PREPARED</command >.
136
136
The identifier must be written as a string literal, and must be
137
137
less than 200 bytes long. It must not be the same as the identifier
138
138
used for any currently prepared transaction.
@@ -157,12 +157,12 @@ ____________________________________________________________________________-->
157
157
158
158
<!--==========================orignal english content==========================
159
159
<para>
160
- <command>PREPARE TRANSACTION</> is not intended for use in applications
160
+ <command>PREPARE TRANSACTION</command > is not intended for use in applications
161
161
or interactive sessions. Its purpose is to allow an external
162
162
transaction manager to perform atomic global transactions across multiple
163
163
databases or other transactional resources. Unless you're writing a
164
164
transaction manager, you probably shouldn't be using <command>PREPARE
165
- TRANSACTION</>.
165
+ TRANSACTION</command >.
166
166
</para>
167
167
____________________________________________________________________________-->
168
168
<para>
@@ -185,11 +185,11 @@ ____________________________________________________________________________-->
185
185
186
186
<!--==========================orignal english content==========================
187
187
<para>
188
- It is not currently allowed to <command>PREPARE</> a transaction that
188
+ It is not currently allowed to <command>PREPARE</command > a transaction that
189
189
has executed any operations involving temporary tables or the session's
190
190
temporary namespace, created any cursors <literal>WITH HOLD</literal>, or
191
191
executed <command>LISTEN</command>, <command>UNLISTEN</command>, or
192
- <command>NOTIFY</>.
192
+ <command>NOTIFY</command >.
193
193
Those features are too tightly
194
194
tied to the current session to be useful in a transaction to be prepared.
195
195
</para>
@@ -204,13 +204,13 @@ ____________________________________________________________________________-->
204
204
205
205
<!--==========================orignal english content==========================
206
206
<para>
207
- If the transaction modified any run-time parameters with <command>SET</>
208
- (without the <literal>LOCAL</> option),
209
- those effects persist after <command>PREPARE TRANSACTION</>, and will not
207
+ If the transaction modified any run-time parameters with <command>SET</command >
208
+ (without the <literal>LOCAL</literal > option),
209
+ those effects persist after <command>PREPARE TRANSACTION</command >, and will not
210
210
be affected by any later <command>COMMIT PREPARED</command> or
211
211
<command>ROLLBACK PREPARED</command>. Thus, in this one respect
212
- <command>PREPARE TRANSACTION</> acts more like <command>COMMIT</> than
213
- <command>ROLLBACK</>.
212
+ <command>PREPARE TRANSACTION</command > acts more like <command>COMMIT</command > than
213
+ <command>ROLLBACK</command >.
214
214
</para>
215
215
____________________________________________________________________________-->
216
216
<para>
@@ -238,7 +238,7 @@ ____________________________________________________________________________-->
238
238
<!--==========================orignal english content==========================
239
239
<para>
240
240
It is unwise to leave transactions in the prepared state for a long time.
241
- This will interfere with the ability of <command>VACUUM</> to reclaim
241
+ This will interfere with the ability of <command>VACUUM</command > to reclaim
242
242
storage, and in extreme cases could cause the database to shut down
243
243
to prevent transaction ID wraparound (see <xref
244
244
linkend="vacuum-for-wraparound">). Keep in mind also that the transaction
@@ -284,7 +284,7 @@ ____________________________________________________________________________-->
284
284
<!--==========================orignal english content==========================
285
285
<para>
286
286
Prepare the current transaction for two-phase commit, using
287
- <literal>foobar</> as the transaction identifier:
287
+ <literal>foobar</literal > as the transaction identifier:
288
288
289
289
<programlisting>
290
290
PREPARE TRANSACTION 'foobar';
0 commit comments