@@ -2157,7 +2157,7 @@ heap_insert(Relation relation, HeapTuple tup, CommandId cid,
2157
2157
int bufflags = 0 ;
2158
2158
2159
2159
/*
2160
- * If this is a catalog, we need to transmit combocids to properly
2160
+ * If this is a catalog, we need to transmit combo CIDs to properly
2161
2161
* decode, so log that as well.
2162
2162
*/
2163
2163
if (RelationIsAccessibleInLogicalDecoding (relation ))
@@ -2437,7 +2437,7 @@ heap_multi_insert(Relation relation, TupleTableSlot **slots, int ntuples,
2437
2437
RelationPutHeapTuple (relation , buffer , heaptuples [ndone ], false);
2438
2438
2439
2439
/*
2440
- * For logical decoding we need combocids to properly decode the
2440
+ * For logical decoding we need combo CIDs to properly decode the
2441
2441
* catalog.
2442
2442
*/
2443
2443
if (needwal && need_cids )
@@ -2453,7 +2453,7 @@ heap_multi_insert(Relation relation, TupleTableSlot **slots, int ntuples,
2453
2453
RelationPutHeapTuple (relation , buffer , heaptup , false);
2454
2454
2455
2455
/*
2456
- * For logical decoding we need combocids to properly decode the
2456
+ * For logical decoding we need combo CIDs to properly decode the
2457
2457
* catalog.
2458
2458
*/
2459
2459
if (needwal && need_cids )
@@ -2733,7 +2733,7 @@ xmax_infomask_changed(uint16 new_infomask, uint16 old_infomask)
2733
2733
*
2734
2734
* In the failure cases, the routine fills *tmfd with the tuple's t_ctid,
2735
2735
* t_xmax (resolving a possible MultiXact, if necessary), and t_cmax (the last
2736
- * only for TM_SelfModified, since we cannot obtain cmax from a combocid
2736
+ * only for TM_SelfModified, since we cannot obtain cmax from a combo CID
2737
2737
* generated by another transaction).
2738
2738
*/
2739
2739
TM_Result
@@ -2761,8 +2761,8 @@ heap_delete(Relation relation, ItemPointer tid,
2761
2761
Assert (ItemPointerIsValid (tid ));
2762
2762
2763
2763
/*
2764
- * Forbid this during a parallel operation, lest it allocate a combocid .
2765
- * Other workers might need that combocid for visibility checks, and we
2764
+ * Forbid this during a parallel operation, lest it allocate a combo CID .
2765
+ * Other workers might need that combo CID for visibility checks, and we
2766
2766
* have no provision for broadcasting it to them.
2767
2767
*/
2768
2768
if (IsInParallelMode ())
@@ -2963,7 +2963,7 @@ heap_delete(Relation relation, ItemPointer tid,
2963
2963
*/
2964
2964
CheckForSerializableConflictIn (relation , tid , BufferGetBlockNumber (buffer ));
2965
2965
2966
- /* replace cid with a combo cid if necessary */
2966
+ /* replace cid with a combo CID if necessary */
2967
2967
HeapTupleHeaderAdjustCmax (tp .t_data , & cid , & iscombo );
2968
2968
2969
2969
/*
@@ -3035,7 +3035,7 @@ heap_delete(Relation relation, ItemPointer tid,
3035
3035
xl_heap_header xlhdr ;
3036
3036
XLogRecPtr recptr ;
3037
3037
3038
- /* For logical decode we need combocids to properly decode the catalog */
3038
+ /* For logical decode we need combo CIDs to properly decode the catalog */
3039
3039
if (RelationIsAccessibleInLogicalDecoding (relation ))
3040
3040
log_heap_new_cid (relation , & tp );
3041
3041
@@ -3183,7 +3183,7 @@ simple_heap_delete(Relation relation, ItemPointer tid)
3183
3183
*
3184
3184
* In the failure cases, the routine fills *tmfd with the tuple's t_ctid,
3185
3185
* t_xmax (resolving a possible MultiXact, if necessary), and t_cmax (the last
3186
- * only for TM_SelfModified, since we cannot obtain cmax from a combocid
3186
+ * only for TM_SelfModified, since we cannot obtain cmax from a combo CID
3187
3187
* generated by another transaction).
3188
3188
*/
3189
3189
TM_Result
@@ -3232,8 +3232,8 @@ heap_update(Relation relation, ItemPointer otid, HeapTuple newtup,
3232
3232
Assert (ItemPointerIsValid (otid ));
3233
3233
3234
3234
/*
3235
- * Forbid this during a parallel operation, lest it allocate a combocid .
3236
- * Other workers might need that combocid for visibility checks, and we
3235
+ * Forbid this during a parallel operation, lest it allocate a combo CID .
3236
+ * Other workers might need that combo CID for visibility checks, and we
3237
3237
* have no provision for broadcasting it to them.
3238
3238
*/
3239
3239
if (IsInParallelMode ())
@@ -3671,7 +3671,7 @@ heap_update(Relation relation, ItemPointer otid, HeapTuple newtup,
3671
3671
HeapTupleHeaderSetXmax (newtup -> t_data , xmax_new_tuple );
3672
3672
3673
3673
/*
3674
- * Replace cid with a combo cid if necessary. Note that we already put
3674
+ * Replace cid with a combo CID if necessary. Note that we already put
3675
3675
* the plain cid into the new tuple.
3676
3676
*/
3677
3677
HeapTupleHeaderAdjustCmax (oldtup .t_data , & cid , & iscombo );
@@ -3987,7 +3987,7 @@ heap_update(Relation relation, ItemPointer otid, HeapTuple newtup,
3987
3987
XLogRecPtr recptr ;
3988
3988
3989
3989
/*
3990
- * For logical decoding we need combocids to properly decode the
3990
+ * For logical decoding we need combo CIDs to properly decode the
3991
3991
* catalog.
3992
3992
*/
3993
3993
if (RelationIsAccessibleInLogicalDecoding (relation ))
@@ -4259,7 +4259,7 @@ get_mxact_status_for_lock(LockTupleMode mode, bool is_update)
4259
4259
* In the failure cases other than TM_Invisible, the routine fills
4260
4260
* *tmfd with the tuple's t_ctid, t_xmax (resolving a possible MultiXact,
4261
4261
* if necessary), and t_cmax (the last only for TM_SelfModified,
4262
- * since we cannot obtain cmax from a combocid generated by another
4262
+ * since we cannot obtain cmax from a combo CID generated by another
4263
4263
* transaction).
4264
4264
* See comments for struct TM_FailureData for additional info.
4265
4265
*
@@ -5901,7 +5901,7 @@ heap_abort_speculative(Relation relation, ItemPointer tid)
5901
5901
5902
5902
/*
5903
5903
* No need to check for serializable conflicts here. There is never a
5904
- * need for a combocid , either. No need to extract replica identity, or
5904
+ * need for a combo CID , either. No need to extract replica identity, or
5905
5905
* do anything special with infomask bits.
5906
5906
*/
5907
5907
@@ -8345,7 +8345,7 @@ log_heap_new_cid(Relation relation, HeapTuple tup)
8345
8345
8346
8346
/*
8347
8347
* If the tuple got inserted & deleted in the same TX we definitely have a
8348
- * combocid , set cmin and cmax.
8348
+ * combo CID , set cmin and cmax.
8349
8349
*/
8350
8350
if (hdr -> t_infomask & HEAP_COMBOCID )
8351
8351
{
@@ -8355,7 +8355,7 @@ log_heap_new_cid(Relation relation, HeapTuple tup)
8355
8355
xlrec .cmax = HeapTupleHeaderGetCmax (hdr );
8356
8356
xlrec .combocid = HeapTupleHeaderGetRawCommandId (hdr );
8357
8357
}
8358
- /* No combocid , so only cmin or cmax can be set by this TX */
8358
+ /* No combo CID , so only cmin or cmax can be set by this TX */
8359
8359
else
8360
8360
{
8361
8361
/*
0 commit comments