Fix typos

Backpatch to: 9.4
This commit is contained in:
Alvaro Herrera 2016-02-25 20:50:20 -03:00
parent 78e329340e
commit f6a605702a

View File

@ -65,8 +65,8 @@ typedef struct ReorderBufferChange
enum ReorderBufferChangeType action; enum ReorderBufferChangeType action;
/* /*
* Context data for the change, which part of the union is valid depends * Context data for the change. Which part of the union is valid depends
* on action/action_internal. * on action.
*/ */
union union
{ {
@ -228,7 +228,7 @@ typedef struct ReorderBufferTXN
/* --- /* ---
* Position in one of three lists: * Position in one of three lists:
* * list of subtransactions if we are *known* to be subxact * * list of subtransactions if we are *known* to be subxact
* * list of toplevel xacts (can be a as-yet unknown subxact) * * list of toplevel xacts (can be an as-yet unknown subxact)
* * list of preallocated ReorderBufferTXNs * * list of preallocated ReorderBufferTXNs
* --- * ---
*/ */
@ -266,7 +266,7 @@ struct ReorderBuffer
/* /*
* Transactions that could be a toplevel xact, ordered by LSN of the first * Transactions that could be a toplevel xact, ordered by LSN of the first
* record bearing that xid.. * record bearing that xid.
*/ */
dlist_head toplevel_by_lsn; dlist_head toplevel_by_lsn;
@ -278,7 +278,7 @@ struct ReorderBuffer
ReorderBufferTXN *by_txn_last_txn; ReorderBufferTXN *by_txn_last_txn;
/* /*
* Callacks to be called when a transactions commits. * Callbacks to be called when a transactions commits.
*/ */
ReorderBufferBeginCB begin; ReorderBufferBeginCB begin;
ReorderBufferApplyChangeCB apply_change; ReorderBufferApplyChangeCB apply_change;
@ -301,7 +301,7 @@ struct ReorderBuffer
* overhead we cache some unused ones here. * overhead we cache some unused ones here.
* *
* The maximum number of cached entries is controlled by const variables * The maximum number of cached entries is controlled by const variables
* ontop of reorderbuffer.c * on top of reorderbuffer.c
*/ */
/* cached ReorderBufferTXNs */ /* cached ReorderBufferTXNs */