Hello hackers, Please also consider fixing the following inconsistencies found in new v12 code:
1. AT_AddOids - remove (orphaned after 578b2297) 2. BeingModified ->TM_BeingModified (for consistency) 3. copy_relation_data -> remove (orphaned after d25f5191) 4. endblock -> endblk (an internal inconsistency) 5. ExecContextForcesOids - not changed, but may be should be removed (orphaned after 578b2297) 6. ExecGetResultSlot - remove (not used since introduction in 1a0586de) 7. existedConstraints & partConstraint -> provenConstraint & testConstraint (sync with implementation) 8. heap_parallelscan_initialize -> remove the sentence (changed in c2fe139c) 9. heap_rescan_set_params - remove (orphaned after c2fe139c) 10. HeapTupleSatisfiesSnapshot -> HeapTupleSatisfiesVisibility (an internal inconsistency) 11. interpretOidsOption - remove (orphaned after 578b2297) 12. item_itemno -> iter_itemno (an internal inconsistency) 13. iterset_is_member -> intset_is_member (an internal inconsistency) 14. latestRemovedxids -> latestRemovedXids (an inconsistent case) 15. newrode -> newrnode (an internal inconsistency) 16. NextSampletuple -> NextSampleTuple (an inconsistent case) 17. oid_typioparam - remove? (orphaned after 578b2297) 18. recoveryTargetIsLatest - remove (orphaned after 2dedf4d9) 19. register_unlink -> register_unlink_segment (an internal inconsistency) 20. RelationGetOidIndex ? just to remove the paragraph (orphaned after 578b2297) 21. slot_getsomeattr -> checked in slot_getsomeattrs ? (an internal inconsistency and questionable grammar) 22. spekToken -> specToken (an internal inconsistency) 23. SSLdone -> secure_done (sync with implementation) 24. stats_relation & keep_buf - remove (orphaned after 9a8ee1dc & 5db6df0c0) 25. SyncRequstHandler -> SyncRequestHandler (a typo) 26. table_needs_toast_table -> table_relation_needs_toast_table (an internal inconsistency) 27. XactTopTransactionId -> XactTopFullTransactionId (an internal inconsistency) The separate patches for all the defects (except 5) are attached. In case a single patch is preferable, I can produce it too. Best regards, Alexander
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index c9b8857d30..e4627d2026 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -5512,8 +5512,8 @@ ATPrepAddColumn(List **wqueue, Relation rel, bool recurse, bool recursing, } /* - * Add a column to a table; this handles the AT_AddOids cases as well. The - * return value is the address of the new column in the parent relation. + * Add a column to a table. The return value is the address of the + * new column in the parent relation. */ static ObjectAddress ATExecAddColumn(List **wqueue, AlteredTableInfo *tab, Relation rel,
diff --git a/contrib/pgrowlocks/pgrowlocks.c b/contrib/pgrowlocks/pgrowlocks.c index a2c44a916c..caf036f40b 100644 --- a/contrib/pgrowlocks/pgrowlocks.c +++ b/contrib/pgrowlocks/pgrowlocks.c @@ -165,7 +165,7 @@ pgrowlocks(PG_FUNCTION_ARGS) infomask = tuple->t_data->t_infomask; /* - * A tuple is locked if HTSU returns BeingModified. + * A tuple is locked if HTSU returns TM_BeingModified. */ if (htsu == TM_BeingModified) {
diff --git a/src/backend/access/heap/rewriteheap.c b/src/backend/access/heap/rewriteheap.c index 131ec7b8d7..19617e6eaa 100644 --- a/src/backend/access/heap/rewriteheap.c +++ b/src/backend/access/heap/rewriteheap.c @@ -350,10 +350,9 @@ end_heap_rewrite(RewriteState state) * * It's obvious that we must do this when not WAL-logging. It's less * obvious that we have to do it even if we did WAL-log the pages. The - * reason is the same as in tablecmds.c's copy_relation_data(): we're - * writing data that's not in shared buffers, and so a CHECKPOINT - * occurring during the rewriteheap operation won't have fsync'd data we - * wrote before the checkpoint. + * reason is that we're writing data that's not in shared buffers, and + * so a CHECKPOINT occurring during the rewriteheap operation won't + * have fsync'd data we wrote before the checkpoint. */ if (RelationNeedsWAL(state->rs_new_rel)) heap_sync(state->rs_new_rel);
diff --git a/src/backend/access/transam/xloginsert.c b/src/backend/access/transam/xloginsert.c index d3c0a93a2e..3ec67d468b 100644 --- a/src/backend/access/transam/xloginsert.c +++ b/src/backend/access/transam/xloginsert.c @@ -1024,7 +1024,7 @@ log_newpage_buffer(Buffer buffer, bool page_std) /* * WAL-log a range of blocks in a relation. * - * An image of all pages with block numbers 'startblk' <= X < 'endblock' is + * An image of all pages with block numbers 'startblk' <= X < 'endblk' is * written to the WAL. If the range is large, this is done in multiple WAL * records. *
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h index 88134bcc71..d056fd6151 100644 --- a/src/include/executor/executor.h +++ b/src/include/executor/executor.h @@ -514,7 +514,6 @@ extern ExprContext *MakePerTupleExprContext(EState *estate); extern void ExecAssignExprContext(EState *estate, PlanState *planstate); extern TupleDesc ExecGetResultType(PlanState *planstate); -extern TupleTableSlot ExecGetResultSlot(PlanState *planstate); extern const TupleTableSlotOps *ExecGetResultSlotOps(PlanState *planstate, bool *isfixed); extern void ExecAssignProjectionInfo(PlanState *planstate,
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index c9b8857d30..23c7674881 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -379,7 +379,7 @@ static void ATExecCheckNotNull(AlteredTableInfo *tab, Relation rel, const char *colName, LOCKMODE lockmode); static bool NotNullImpliedByRelConstraints(Relation rel, Form_pg_attribute attr); static bool ConstraintImpliedByRelConstraint(Relation scanrel, - List *partConstraint, List *existedConstraints); + List *testConstraint, List *provenConstraint); static ObjectAddress ATExecColumnDefault(Relation rel, const char *colName, Node *newDefault, LOCKMODE lockmode); static ObjectAddress ATExecAddIdentity(Relation rel, const char *colName,
diff --git a/src/backend/access/heap/heapam.c b/src/backend/access/heap/heapam.c index 419da8784a..595e0876f0 100644 --- a/src/backend/access/heap/heapam.c +++ b/src/backend/access/heap/heapam.c @@ -238,9 +238,6 @@ initscan(HeapScanDesc scan, ScanKey key, bool keep_startblock) * (However, some callers need to be able to disable one or both of these * behaviors, independently of the size of the table; also there is a GUC * variable that can disable synchronized scanning.) - * - * Note that heap_parallelscan_initialize has a very similar test; if you - * change this, consider changing that one, too. */ if (!RelationUsesLocalBuffers(scan->rs_base.rs_rd) && scan->rs_nblocks > NBuffers / 4)
diff --git a/src/include/access/heapam.h b/src/include/access/heapam.h index b88bd8a4d7..dffb57bf11 100644 --- a/src/include/access/heapam.h +++ b/src/include/access/heapam.h @@ -116,8 +116,6 @@ extern void heap_setscanlimits(TableScanDesc scan, BlockNumber startBlk, extern void heapgetpage(TableScanDesc scan, BlockNumber page); extern void heap_rescan(TableScanDesc scan, ScanKey key, bool set_params, bool allow_strat, bool allow_sync, bool allow_pagemode); -extern void heap_rescan_set_params(TableScanDesc scan, ScanKey key, - bool allow_strat, bool allow_sync, bool allow_pagemode); extern void heap_endscan(TableScanDesc scan); extern HeapTuple heap_getnext(TableScanDesc scan, ScanDirection direction); extern bool heap_getnextslot(TableScanDesc sscan,
diff --git a/src/backend/access/heap/heapam_visibility.c b/src/backend/access/heap/heapam_visibility.c index 537e681b23..2e3764d3c5 100644 --- a/src/backend/access/heap/heapam_visibility.c +++ b/src/backend/access/heap/heapam_visibility.c @@ -1392,7 +1392,7 @@ HeapTupleSatisfiesVacuum(HeapTuple htup, TransactionId OldestXmin, * See SNAPSHOT_TOAST's definition for the intended behaviour. * * This is an interface to HeapTupleSatisfiesVacuum that's callable via - * HeapTupleSatisfiesSnapshot, so it can be used through a Snapshot. + * HeapTupleSatisfiesVisibility, so it can be used through a Snapshot. * snapshot->xmin must have been set up with the xmin horizon to use. */ static bool
diff --git a/src/backend/access/common/reloptions.c b/src/backend/access/common/reloptions.c index 4d0d24be0b..de06c92574 100644 --- a/src/backend/access/common/reloptions.c +++ b/src/backend/access/common/reloptions.c @@ -52,9 +52,6 @@ * (v) make sure the lock level is set correctly for that operation * (vi) don't forget to document the option * - * Note that we don't handle "oids" in relOpts because it is handled by - * interpretOidsOption(). - * * The default choice for any new option should be AccessExclusiveLock. * In some cases the lock level can be reduced from there, but the lock * level chosen should always conflict with itself to ensure that multiple
diff --git a/src/backend/lib/integerset.c b/src/backend/lib/integerset.c index 6921955f85..6d51c7903e 100644 --- a/src/backend/lib/integerset.c +++ b/src/backend/lib/integerset.c @@ -236,7 +236,7 @@ struct IntegerSet * * 'iter_values' is an array of integers ready to be returned to the * caller; 'iter_num_values' is the length of that array, and - * 'iter_valueno' is the next index. 'iter_node' and 'item_itemno' point + * 'iter_valueno' is the next index. 'iter_node' and 'iter_itemno' point * to the leaf node, and item within the leaf node, to get the next batch * of values from. *
diff --git a/src/test/modules/test_integerset/test_integerset.c b/src/test/modules/test_integerset/test_integerset.c index 346bb779bf..15b9ce1ac3 100644 --- a/src/test/modules/test_integerset/test_integerset.c +++ b/src/test/modules/test_integerset/test_integerset.c @@ -581,7 +581,7 @@ test_huge_distances(void) intset_add_member(intset, values[i]); /* - * Test iterset_is_member() around each of these values + * Test intset_is_member() around each of these values */ for (int i = 0; i < num_values; i++) {
diff --git a/src/backend/access/heap/heapam.c b/src/backend/access/heap/heapam.c index 419da8784a..8907243e6c 100644 --- a/src/backend/access/heap/heapam.c +++ b/src/backend/access/heap/heapam.c @@ -7085,7 +7085,7 @@ heap_compute_xid_horizon_for_tuples(Relation rel, * Conjecture: if hitemid is dead then it had xids before the xids * marked on LP_NORMAL items. So we just ignore this item and move * onto the next, for the purposes of calculating - * latestRemovedxids. + * latestRemovedXids. */ } else
diff --git a/src/include/access/tableam.h b/src/include/access/tableam.h index bf3a472018..e3619b8e7e 100644 --- a/src/include/access/tableam.h +++ b/src/include/access/tableam.h @@ -1331,7 +1331,7 @@ table_finish_bulk_insert(Relation rel, int options) */ /* - * Create storage for `rel` in `newrode`, with persistence set to + * Create storage for `rel` in `newrnode`, with persistence set to * `persistence`. * * This is used both during relation creation and various DDL operations to
diff --git a/src/include/access/tableam.h b/src/include/access/tableam.h index bf3a472018..92a799652d 100644 --- a/src/include/access/tableam.h +++ b/src/include/access/tableam.h @@ -691,7 +691,7 @@ typedef struct TableAmRoutine * block using the TsmRoutine's NextSampleTuple() callback. * * The callback needs to perform visibility checks, and only return - * visible tuples. That obviously can mean calling NextSampletuple() + * visible tuples. That obviously can mean calling NextSampleTuple() * multiple times. * * The TsmRoutine interface assumes that there's a maximum offset on a
diff --git a/src/backend/commands/copy.c b/src/backend/commands/copy.c index a8ff304909..20a1d599c0 100644 --- a/src/backend/commands/copy.c +++ b/src/backend/commands/copy.c @@ -177,7 +177,6 @@ typedef struct CopyStateData */ AttrNumber num_defaults; FmgrInfo oid_in_function; - Oid oid_typioparam; FmgrInfo *in_functions; /* array of input functions for each attrs */ Oid *typioparams; /* array of element types for in_functions */ int *defmap; /* array of default att numbers */
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 1c7dd51b9f..e08320e829 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -314,8 +314,6 @@ static bool recoveryStopAfter; * * recoveryTargetTLI: the currently understood target timeline; changes * - * recoveryTargetIsLatest: was the requested target timeline 'latest'? - * * expectedTLEs: a list of TimeLineHistoryEntries for recoveryTargetTLI and the timelines of * its known parents, newest first (so recoveryTargetTLI is always the * first list member). Only these TLIs are expected to be seen in the WAL
diff --git a/src/backend/storage/smgr/md.c b/src/backend/storage/smgr/md.c index bbcd18d52b..64acc3fa43 100644 --- a/src/backend/storage/smgr/md.c +++ b/src/backend/storage/smgr/md.c @@ -921,7 +921,7 @@ register_dirty_segment(SMgrRelation reln, ForkNumber forknum, MdfdVec *seg) } /* - * register_unlink() -- Schedule a file to be deleted after next checkpoint + * register_unlink_segment() -- Schedule a file to be deleted after next checkpoint */ static void register_unlink_segment(RelFileNodeBackend rnode, ForkNumber forknum,
diff --git a/src/backend/catalog/catalog.c b/src/backend/catalog/catalog.c index 11936a6571..a6e5119099 100644 --- a/src/backend/catalog/catalog.c +++ b/src/backend/catalog/catalog.c @@ -317,13 +317,6 @@ IsSharedRelation(Oid relationId) * consecutive existing OIDs. This is a mostly reasonable assumption for * system catalogs. * - * This is exported separately because there are cases where we want to use - * an index that will not be recognized by RelationGetOidIndex: TOAST tables - * have indexes that are usable, but have multiple columns and are on - * ordinary columns rather than a true OID column. This code will work - * anyway, so long as the OID is the index's first column. The caller must - * pass in the actual heap attnum of the OID column, however. - * * Caller must have a suitable lock on the relation. */ Oid
diff --git a/src/backend/executor/execTuples.c b/src/backend/executor/execTuples.c index 968e2039d1..5d2baf532d 100644 --- a/src/backend/executor/execTuples.c +++ b/src/backend/executor/execTuples.c @@ -1867,7 +1867,7 @@ void slot_getsomeattrs_int(TupleTableSlot *slot, int attnum) { /* Check for caller errors */ - Assert(slot->tts_nvalid < attnum); /* slot_getsomeattr checked */ + Assert(slot->tts_nvalid < attnum); /* checked in slot_getsomeattrs */ Assert(attnum > 0); if (unlikely(attnum > slot->tts_tupleDescriptor->natts))
diff --git a/src/backend/access/heap/heapam_handler.c b/src/backend/access/heap/heapam_handler.c index a4a28e88ec..f53a6fed6b 100644 --- a/src/backend/access/heap/heapam_handler.c +++ b/src/backend/access/heap/heapam_handler.c @@ -286,7 +286,7 @@ heapam_tuple_insert_speculative(Relation relation, TupleTableSlot *slot, static void heapam_tuple_complete_speculative(Relation relation, TupleTableSlot *slot, - uint32 spekToken, bool succeeded) + uint32 specToken, bool succeeded) { bool shouldFree = true; HeapTuple tuple = ExecFetchSlotHeapTuple(slot, true, &shouldFree);
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 8e098e401b..dd16938d9c 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -404,7 +404,7 @@ static void BackendRun(Port *port) pg_attribute_noreturn(); static void ExitPostmaster(int status) pg_attribute_noreturn(); static int ServerLoop(void); static int BackendStartup(Port *port); -static int ProcessStartupPacket(Port *port, bool SSLdone); +static int ProcessStartupPacket(Port *port, bool secure_done); static void SendNegotiateProtocolVersion(List *unrecognized_protocol_options); static void processCancelRequest(Port *port, void *pkt); static int initMasks(fd_set *rmask);
diff --git a/src/backend/access/heap/heapam.c b/src/backend/access/heap/heapam.c index 419da8784a..34624d6953 100644 --- a/src/backend/access/heap/heapam.c +++ b/src/backend/access/heap/heapam.c @@ -1396,15 +1396,6 @@ heap_getnextslot(TableScanDesc sscan, ScanDirection direction, TupleTableSlot *s * If the tuple is found but fails the time qual check, then false is returned * but tuple->t_data is left pointing to the tuple. * - * keep_buf determines what is done with the buffer in the false-result cases. - * When the caller specifies keep_buf = true, we retain the pin on the buffer - * and return it in *userbuf (so the caller must eventually unpin it); when - * keep_buf = false, the pin is released and *userbuf is set to InvalidBuffer. - * - * stats_relation is the relation to charge the heap_fetch operation against - * for statistical purposes. (This could be the heap rel itself, an - * associated index, or NULL to not count the fetch at all.) - * * heap_fetch does not follow HOT chains: only the exact TID requested will * be fetched. *
diff --git a/src/include/storage/sync.h b/src/include/storage/sync.h index 1e453a5b30..16428c5f5f 100644 --- a/src/include/storage/sync.h +++ b/src/include/storage/sync.h @@ -44,7 +44,7 @@ typedef enum SyncRequestHandler */ typedef struct FileTag { - int16 handler; /* SyncRequstHandler value, saving space */ + int16 handler; /* SyncRequestHandler value, saving space */ int16 forknum; /* ForkNumber, saving space */ RelFileNode rnode; uint32 segno;
diff --git a/src/include/access/tableam.h b/src/include/access/tableam.h index bf3a472018..45590c5797 100644 --- a/src/include/access/tableam.h +++ b/src/include/access/tableam.h @@ -1597,7 +1597,7 @@ table_relation_size(Relation rel, ForkNumber forkNumber) } /* - * table_needs_toast_table - does this relation need a toast table? + * table_relation_needs_toast_table - does this relation need a toast table? */ static inline bool table_relation_needs_toast_table(Relation rel)
diff --git a/src/backend/access/transam/xact.c b/src/backend/access/transam/xact.c index f1108ccc8b..718f71173e 100644 --- a/src/backend/access/transam/xact.c +++ b/src/backend/access/transam/xact.c @@ -91,7 +91,7 @@ int synchronous_commit = SYNCHRONOUS_COMMIT_ON; * need to return the same answers in the parallel worker as they would have * in the user backend, so we need some additional bookkeeping. * - * XactTopTransactionId stores the XID of our toplevel transaction, which + * XactTopFullTransactionId stores the XID of our toplevel transaction, which * will be the same as TopTransactionState.transactionId in an ordinary * backend; but in a parallel backend, which does not have the entire * transaction state, it will instead be copied from the backend that started