1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-24 00:23:06 +03:00

Fix typos in comments and in one isolation test.

Dagfinn Ilmari Mannsåker, reviewed by Shubham Khanna. Some subtractions
by me.

Discussion: http://postgr.es/m/87le9fmi01.fsf@wibble.ilmari.org
This commit is contained in:
Robert Haas
2024-01-02 11:56:02 -05:00
parent 5c430f9dc5
commit 0d9937d118
29 changed files with 45 additions and 45 deletions

View File

@@ -348,7 +348,7 @@ brininsert(Relation idxRel, Datum *values, bool *nulls,
bool autosummarize = BrinGetAutoSummarize(idxRel);
/*
* If firt time through in this statement, initialize the insert state
* If first time through in this statement, initialize the insert state
* that we keep for all the inserts in the command.
*/
if (!bistate)
@@ -1042,7 +1042,7 @@ brinbuildCallbackParallel(Relation index,
/*
* If we're in a block that belongs to a different range, summarize what
* we've got and start afresh. Note the scan might have skipped many
* pages, if they were devoid of live tuples; we do not create emptry BRIN
* pages, if they were devoid of live tuples; we do not create empty BRIN
* ranges here - the leader is responsible for filling them in.
*
* Unlike serial builds, parallel index builds allow synchronized seqscans
@@ -2149,7 +2149,7 @@ union_tuples(BrinDesc *bdesc, BrinMemTuple *a, BrinTuple *b)
* brin_vacuum_scan
* Do a complete scan of the index during VACUUM.
*
* This routine scans the complete index looking for uncatalogued index pages,
* This routine scans the complete index looking for uncataloged index pages,
* i.e. those that might have been lost due to a crash after index extension
* and such.
*/

View File

@@ -85,7 +85,7 @@
((att)->attstorage != TYPSTORAGE_PLAIN)
/*
* Setup for cacheing pass-by-ref missing attributes in a way that survives
* Setup for caching pass-by-ref missing attributes in a way that survives
* tupleDesc destruction.
*/

View File

@@ -158,7 +158,7 @@ btbuildempty(Relation index)
Page metapage;
/*
* Initalize the metapage.
* Initialize the metapage.
*
* Regular index build bypasses the buffer manager and uses smgr functions
* directly, with an smgrimmedsync() call at the end. That makes sense