Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit3aff33a

Browse files
committed
Fix typos.
Oskari Saarenmaa
1 parentfd658db commit3aff33a

File tree

26 files changed

+30
-30
lines changed

26 files changed

+30
-30
lines changed

‎contrib/pgcrypto/sha1.h‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ extern void sha1_pad(struct sha1_ctxt *);
6363
externvoidsha1_loop(structsha1_ctxt*,constuint8*,size_t);
6464
externvoidsha1_result(structsha1_ctxt*,uint8*);
6565

66-
/*compatibilty with other SHA1 source codes */
66+
/*compatibility with other SHA1 source codes */
6767
typedefstructsha1_ctxtSHA1_CTX;
6868

6969
#defineSHA1Init(x)sha1_init((x))

‎contrib/sepgsql/label.c‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ sepgsql_set_client_label(const char *new_label)
161161
/*
162162
* sepgsql_xact_callback
163163
*
164-
* A callback routine of transaction commit/abort/prepare.Commmit or abort
164+
* A callback routine of transaction commit/abort/prepare.Commit or abort
165165
* changes in the client_label_pending list.
166166
*/
167167
staticvoid

‎doc/src/sgml/sources.sgml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -860,7 +860,7 @@ BETTER: unrecognized node type: 42
860860
Code in <productname>PostgreSQL</> should only rely on language
861861
features available in the C89 standard. That means a conforming
862862
C89 compiler has to be able to compile postgres, at least aside
863-
from a few platformdependant pieces. Features from later
863+
from a few platformdependent pieces. Features from later
864864
revision of the C standard or compiler specific features can be
865865
used, if a fallback is provided.
866866
</para>

‎src/backend/access/transam/twophase.c‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1613,7 +1613,7 @@ CheckPointTwoPhase(XLogRecPtr redo_horizon)
16131613
* transaction manager isn't active.
16141614
*
16151615
* It's also possible to move I/O out of the lock, but on
1616-
* every error we should check whether somebodycommited our
1616+
* every error we should check whether somebodycommitted our
16171617
* transaction in different backend. Let's leave this optimisation
16181618
* for future, if somebody will spot that this place cause
16191619
* bottleneck.

‎src/backend/libpq/auth.c‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,7 @@ pg_GSS_recvauth(Port *port)
838838

839839
/*
840840
* Loop through GSSAPI message exchange. This exchange can consist of
841-
* multiplemessags sent in both directions. First message is always from
841+
* multiplemessages sent in both directions. First message is always from
842842
* the client. All messages from client to server are password packets
843843
* (type 'p').
844844
*/
@@ -1078,7 +1078,7 @@ pg_SSPI_recvauth(Port *port)
10781078

10791079
/*
10801080
* Loop through SSPI message exchange. This exchange can consist of
1081-
* multiplemessags sent in both directions. First message is always from
1081+
* multiplemessages sent in both directions. First message is always from
10821082
* the client. All messages from client to server are password packets
10831083
* (type 'p').
10841084
*/

‎src/backend/optimizer/util/relnode.c‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ build_join_rel(PlannerInfo *root,
501501
* level.
502502
*
503503
* Note that if there are more than two rels in this relation, they could
504-
* be divided between inner_rel and outer_rel in anyarbitary way. We
504+
* be divided between inner_rel and outer_rel in anyarbitrary way. We
505505
* assume this doesn't matter, because we should hit all the same baserels
506506
* and joinclauses while building up to this joinrel no matter which we
507507
* take; therefore, we should make the same decision here however we get

‎src/backend/parser/parse_target.c‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ transformTargetEntry(ParseState *pstate,
115115
*
116116
* This code acts mostly the same for SELECT, UPDATE, or RETURNING lists;
117117
* the main thing is to transform the given expressions (the "val" fields).
118-
* The exprKind parameter distinguishes these cases whennecesssary.
118+
* The exprKind parameter distinguishes these cases whennecessary.
119119
*/
120120
List*
121121
transformTargetList(ParseState*pstate,List*targetlist,

‎src/backend/storage/buffer/bufmgr.c‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ inteffective_io_concurrency = 0;
113113

114114
/*
115115
* GUC variables about triggering kernel writeback for buffers written; OS
116-
*dependant defaults are set via the GUC mechanism.
116+
*dependent defaults are set via the GUC mechanism.
117117
*/
118118
intcheckpoint_flush_after=0;
119119
intbgwriter_flush_after=0;

‎src/backend/storage/ipc/dsm_impl.c‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* substantially, but there should be few systems where we must make do
3535
* with such poor tools.
3636
*
37-
* As ever, Windows requires its ownimplemetation.
37+
* As ever, Windows requires its ownimplementation.
3838
*
3939
* Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
4040
* Portions Copyright (c) 1994, Regents of the University of California

‎src/backend/storage/ipc/procarray.c‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ typedef struct ProcArrayStruct
7171
* Known assigned XIDs handling
7272
*/
7373
intmaxKnownAssignedXids;/* allocated size of array */
74-
intnumKnownAssignedXids;/*currrent # of valid entries */
74+
intnumKnownAssignedXids;/*current # of valid entries */
7575
inttailKnownAssignedXids;/* index of oldest valid element */
7676
intheadKnownAssignedXids;/* index of newest element, + 1 */
7777
slock_tknown_assigned_xids_lck;/* protects head/tail pointers */

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp