@@ -65,8 +65,8 @@ typedef struct ReorderBufferChange
65
65
enum ReorderBufferChangeType action ;
66
66
67
67
/*
68
- * Context data for the change, which part of the union is valid depends
69
- * on action/action_internal .
68
+ * Context data for the change. Which part of the union is valid depends
69
+ * on action.
70
70
*/
71
71
union
72
72
{
@@ -228,7 +228,7 @@ typedef struct ReorderBufferTXN
228
228
/* ---
229
229
* Position in one of three lists:
230
230
* * list of subtransactions if we are *known* to be subxact
231
- * * list of toplevel xacts (can be a as-yet unknown subxact)
231
+ * * list of toplevel xacts (can be an as-yet unknown subxact)
232
232
* * list of preallocated ReorderBufferTXNs
233
233
* ---
234
234
*/
@@ -266,7 +266,7 @@ struct ReorderBuffer
266
266
267
267
/*
268
268
* Transactions that could be a toplevel xact, ordered by LSN of the first
269
- * record bearing that xid..
269
+ * record bearing that xid.
270
270
*/
271
271
dlist_head toplevel_by_lsn ;
272
272
@@ -278,7 +278,7 @@ struct ReorderBuffer
278
278
ReorderBufferTXN * by_txn_last_txn ;
279
279
280
280
/*
281
- * Callacks to be called when a transactions commits.
281
+ * Callbacks to be called when a transactions commits.
282
282
*/
283
283
ReorderBufferBeginCB begin ;
284
284
ReorderBufferApplyChangeCB apply_change ;
@@ -301,7 +301,7 @@ struct ReorderBuffer
301
301
* overhead we cache some unused ones here.
302
302
*
303
303
* The maximum number of cached entries is controlled by const variables
304
- * ontop of reorderbuffer.c
304
+ * on top of reorderbuffer.c
305
305
*/
306
306
307
307
/* cached ReorderBufferTXNs */
0 commit comments