@@ -75,8 +75,8 @@ typedef struct ReorderBufferChange
75
75
RepOriginId origin_id ;
76
76
77
77
/*
78
- * Context data for the change, which part of the union is valid depends
79
- * on action/action_internal .
78
+ * Context data for the change. Which part of the union is valid depends
79
+ * on action.
80
80
*/
81
81
union
82
82
{
@@ -242,7 +242,7 @@ typedef struct ReorderBufferTXN
242
242
/* ---
243
243
* Position in one of three lists:
244
244
* * list of subtransactions if we are *known* to be subxact
245
- * * list of toplevel xacts (can be am as-yet unknown subxact)
245
+ * * list of toplevel xacts (can be an as-yet unknown subxact)
246
246
* * list of preallocated ReorderBufferTXNs
247
247
* ---
248
248
*/
@@ -280,7 +280,7 @@ struct ReorderBuffer
280
280
281
281
/*
282
282
* Transactions that could be a toplevel xact, ordered by LSN of the first
283
- * record bearing that xid..
283
+ * record bearing that xid.
284
284
*/
285
285
dlist_head toplevel_by_lsn ;
286
286
@@ -292,7 +292,7 @@ struct ReorderBuffer
292
292
ReorderBufferTXN * by_txn_last_txn ;
293
293
294
294
/*
295
- * Callacks to be called when a transactions commits.
295
+ * Callbacks to be called when a transactions commits.
296
296
*/
297
297
ReorderBufferBeginCB begin ;
298
298
ReorderBufferApplyChangeCB apply_change ;
@@ -315,7 +315,7 @@ struct ReorderBuffer
315
315
* overhead we cache some unused ones here.
316
316
*
317
317
* The maximum number of cached entries is controlled by const variables
318
- * ontop of reorderbuffer.c
318
+ * on top of reorderbuffer.c
319
319
*/
320
320
321
321
/* cached ReorderBufferTXNs */
0 commit comments