Skip to content

Commit

Permalink
Spelling fixes
Browse files Browse the repository at this point in the history
From: Josh Soref <jsoref@gmail.com>
  • Loading branch information
petere committed Mar 14, 2017
1 parent 36fcb36 commit 18dc2ae
Show file tree
Hide file tree
Showing 18 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion contrib/ltree/ltxtquery_io.c
Expand Up @@ -96,7 +96,7 @@ gettoken_query(QPRS_STATE *state, int32 *val, int32 *lenval, char **strval, uint
if (*flag)
ereport(ERROR,
(errcode(ERRCODE_SYNTAX_ERROR),
errmsg("modificators syntax error")));
errmsg("modifiers syntax error")));
*lenval += charlen;
}
else if (charlen == 1 && t_iseq(state->buf, '%'))
Expand Down
2 changes: 1 addition & 1 deletion doc/src/sgml/biblio.sgml
Expand Up @@ -295,7 +295,7 @@ ssimkovi@ag.or.at
<pubdate>April, 1990</pubdate>
<publisher>
<publishername>University of California</publishername>
<address>Berkely, California</address>
<address>Berkeley, California</address>
</publisher>
</biblioset>
</biblioentry>
Expand Down
2 changes: 1 addition & 1 deletion doc/src/sgml/release-8.4.sgml
Expand Up @@ -381,7 +381,7 @@

<para>
This prevents scenarios wherein a pathological regular expression
could lock up a server process uninterruptably for a long time.
could lock up a server process uninterruptibly for a long time.
</para>
</listitem>

Expand Down
2 changes: 1 addition & 1 deletion doc/src/sgml/release-9.0.sgml
Expand Up @@ -2250,7 +2250,7 @@

<para>
This prevents scenarios wherein a pathological regular expression
could lock up a server process uninterruptably for a long time.
could lock up a server process uninterruptibly for a long time.
</para>
</listitem>

Expand Down
2 changes: 1 addition & 1 deletion doc/src/sgml/release-9.1.sgml
Expand Up @@ -3941,7 +3941,7 @@ Branch: REL9_0_STABLE [9d6af7367] 2015-08-15 11:02:34 -0400

<para>
This prevents scenarios wherein a pathological regular expression
could lock up a server process uninterruptably for a long time.
could lock up a server process uninterruptibly for a long time.
</para>
</listitem>

Expand Down
2 changes: 1 addition & 1 deletion doc/src/sgml/release-9.2.sgml
Expand Up @@ -4774,7 +4774,7 @@ Branch: REL9_2_STABLE [6b700301c] 2015-02-17 16:03:00 +0100

<para>
This prevents scenarios wherein a pathological regular expression
could lock up a server process uninterruptably for a long time.
could lock up a server process uninterruptibly for a long time.
</para>
</listitem>

Expand Down
2 changes: 1 addition & 1 deletion doc/src/sgml/release-9.3.sgml
Expand Up @@ -6968,7 +6968,7 @@ Branch: REL8_4_STABLE [b6e143458] 2014-03-01 15:21:13 -0500

<para>
This prevents scenarios wherein a pathological regular expression
could lock up a server process uninterruptably for a long time.
could lock up a server process uninterruptibly for a long time.
</para>
</listitem>

Expand Down
2 changes: 1 addition & 1 deletion doc/src/sgml/release-9.4.sgml
Expand Up @@ -8899,7 +8899,7 @@ Branch: REL9_4_STABLE [c2b06ab17] 2015-01-30 22:45:58 -0500
<listitem>
<para>
Add <xref linkend="APP-CREATEUSER"> option <option>-g</>
to specify role membership (Chistopher Browne)
to specify role membership (Christopher Browne)
</para>
</listitem>

Expand Down
2 changes: 1 addition & 1 deletion doc/src/sgml/release-9.6.sgml
Expand Up @@ -3116,7 +3116,7 @@ and many others in the same vein

<para>
This view exposes the same information available from
the <application>pg_config</> comand-line utility,
the <application>pg_config</> command-line utility,
namely assorted compile-time configuration information for
<productname>PostgreSQL</>.
</para>
Expand Down
6 changes: 3 additions & 3 deletions doc/src/sgml/release-old.sgml
Expand Up @@ -5737,8 +5737,8 @@ fix rtree for use in inner scan (Vadim)
fix gist for use in inner scan, cleanups (Vadim, Andrea)
avoid unnecessary local buffers allocation (Vadim, Massimo)
fix local buffers leak in transaction aborts (Vadim)
fix file manager memmory leaks, cleanups (Vadim, Massimo)
fix storage manager memmory leaks (Vadim)
fix file manager memory leaks, cleanups (Vadim, Massimo)
fix storage manager memory leaks (Vadim)
fix btree duplicates handling (Vadim)
fix deleted rows reincarnation caused by vacuum (Vadim)
fix SELECT varchar()/char() INTO TABLE made zero-length fields(Bruce)
Expand Down Expand Up @@ -5904,7 +5904,7 @@ European date format now set when postmaster is started
Execute lowercase function names if not found with exact case
Fixes for aggregate/GROUP processing, allow 'select sum(func(x),sum(x+y) from z'
Gist now included in the distribution(Marc)
Idend authentication of local users(Bryan)
Ident authentication of local users(Bryan)
Implement BETWEEN qualifier(Bruce)
Implement IN qualifier(Bruce)
libpq has PQgetisnull()(Bruce)
Expand Down
2 changes: 1 addition & 1 deletion src/backend/access/transam/xlog.c
Expand Up @@ -838,7 +838,7 @@ static bool InstallXLogFileSegment(XLogSegNo *segno, char *tmppath,
bool find_free, XLogSegNo max_segno,
bool use_lock);
static int XLogFileRead(XLogSegNo segno, int emode, TimeLineID tli,
int source, bool notexistOk);
int source, bool notfoundOk);
static int XLogFileReadAnyTLI(XLogSegNo segno, int emode, int source);
static int XLogPageRead(XLogReaderState *xlogreader, XLogRecPtr targetPagePtr,
int reqLen, XLogRecPtr targetRecPtr, char *readBuf,
Expand Down
2 changes: 1 addition & 1 deletion src/backend/executor/nodeAgg.c
Expand Up @@ -497,7 +497,7 @@ static void agg_fill_hash_table(AggState *aggstate);
static TupleTableSlot *agg_retrieve_hash_table(AggState *aggstate);
static Datum GetAggInitVal(Datum textInitVal, Oid transtype);
static void build_pertrans_for_aggref(AggStatePerTrans pertrans,
AggState *aggsate, EState *estate,
AggState *aggstate, EState *estate,
Aggref *aggref, Oid aggtransfn, Oid aggtranstype,
Oid aggserialfn, Oid aggdeserialfn,
Datum initValue, bool initValueIsNull,
Expand Down
2 changes: 1 addition & 1 deletion src/backend/optimizer/geqo/geqo_erx.c
Expand Up @@ -458,7 +458,7 @@ edge_failure(PlannerInfo *root, Gene *gene, int index, Edge *edge_table, int num
if (edge_table[i].unused_edges >= 0)
return (Gene) i;

elog(LOG, "no edge found via looking for the last ununsed point");
elog(LOG, "no edge found via looking for the last unused point");
}


Expand Down
2 changes: 1 addition & 1 deletion src/backend/port/dynloader/linux.c
Expand Up @@ -124,7 +124,7 @@ char *
pg_dlerror(void)
{
#ifndef HAVE_DLD_H
return "dynaloader unspported";
return "dynaloader unsupported";
#else
return dld_strerror(dld_errno);
#endif
Expand Down
8 changes: 4 additions & 4 deletions src/backend/replication/walreceiverfuncs.c
Expand Up @@ -322,7 +322,7 @@ GetReplicationApplyDelay(void)
long secs;
int usecs;

TimestampTz chunckReplayStartTime;
TimestampTz chunkReplayStartTime;

SpinLockAcquire(&walrcv->mutex);
receivePtr = walrcv->receivedUpto;
Expand All @@ -333,12 +333,12 @@ GetReplicationApplyDelay(void)
if (receivePtr == replayPtr)
return 0;

chunckReplayStartTime = GetCurrentChunkReplayStartTime();
chunkReplayStartTime = GetCurrentChunkReplayStartTime();

if (chunckReplayStartTime == 0)
if (chunkReplayStartTime == 0)
return -1;

TimestampDifference(chunckReplayStartTime,
TimestampDifference(chunkReplayStartTime,
GetCurrentTimestamp(),
&secs, &usecs);

Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/libpq/bcc32.mak
Expand Up @@ -8,7 +8,7 @@

!IF "$(BCB)" == ""
!MESSAGE You must edit bcc32.mak and define BCB at the top
!ERROR misssing BCB
!ERROR missing BCB
!ENDIF

!IF "$(__NMAKE__)" == ""
Expand Down
8 changes: 4 additions & 4 deletions src/test/regress/expected/tsdicts.out
Expand Up @@ -568,10 +568,10 @@ SELECT to_tsvector('thesaurus_tst', 'one postgres one two one two three one');
'1':1,5 '12':3 '123':4 'pgsql':2
(1 row)

SELECT to_tsvector('thesaurus_tst', 'Supernovae star is very new star and usually called supernovae (abbrevation SN)');
to_tsvector
-------------------------------------------------------------
'abbrev':10 'call':8 'new':4 'sn':1,9,11 'star':5 'usual':7
SELECT to_tsvector('thesaurus_tst', 'Supernovae star is very new star and usually called supernovae (abbreviation SN)');
to_tsvector
--------------------------------------------------------------
'abbrevi':10 'call':8 'new':4 'sn':1,9,11 'star':5 'usual':7
(1 row)

SELECT to_tsvector('thesaurus_tst', 'Booking tickets is looking like a booking a tickets');
Expand Down
2 changes: 1 addition & 1 deletion src/test/regress/sql/tsdicts.sql
Expand Up @@ -186,5 +186,5 @@ ALTER TEXT SEARCH CONFIGURATION thesaurus_tst ALTER MAPPING FOR
WITH synonym, thesaurus, english_stem;

SELECT to_tsvector('thesaurus_tst', 'one postgres one two one two three one');
SELECT to_tsvector('thesaurus_tst', 'Supernovae star is very new star and usually called supernovae (abbrevation SN)');
SELECT to_tsvector('thesaurus_tst', 'Supernovae star is very new star and usually called supernovae (abbreviation SN)');
SELECT to_tsvector('thesaurus_tst', 'Booking tickets is looking like a booking a tickets');

0 comments on commit 18dc2ae

Please sign in to comment.