Spelling fixes

From: Josh Soref <jsoref@gmail.com>
pull/22/merge
Peter Eisentraut 9 years ago
parent 36fcb36b8b
commit 18dc2aee5f
  1. 2
      contrib/ltree/ltxtquery_io.c
  2. 2
      doc/src/sgml/biblio.sgml
  3. 2
      doc/src/sgml/release-8.4.sgml
  4. 2
      doc/src/sgml/release-9.0.sgml
  5. 2
      doc/src/sgml/release-9.1.sgml
  6. 2
      doc/src/sgml/release-9.2.sgml
  7. 2
      doc/src/sgml/release-9.3.sgml
  8. 2
      doc/src/sgml/release-9.4.sgml
  9. 2
      doc/src/sgml/release-9.6.sgml
  10. 6
      doc/src/sgml/release-old.sgml
  11. 2
      src/backend/access/transam/xlog.c
  12. 2
      src/backend/executor/nodeAgg.c
  13. 2
      src/backend/optimizer/geqo/geqo_erx.c
  14. 2
      src/backend/port/dynloader/linux.c
  15. 8
      src/backend/replication/walreceiverfuncs.c
  16. 2
      src/interfaces/libpq/bcc32.mak
  17. 8
      src/test/regress/expected/tsdicts.out
  18. 2
      src/test/regress/sql/tsdicts.sql

@ -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, '%'))

@ -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>

@ -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>

@ -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>

@ -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>

@ -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>

@ -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>

@ -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>

@ -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>

@ -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)
@ -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)

@ -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,

@ -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,

@ -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");
}

@ -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

@ -322,7 +322,7 @@ GetReplicationApplyDelay(void)
long secs;
int usecs;
TimestampTz chunckReplayStartTime;
TimestampTz chunkReplayStartTime;
SpinLockAcquire(&walrcv->mutex);
receivePtr = walrcv->receivedUpto;
@ -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);

@ -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__)" == ""

@ -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');

@ -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');

Loading…
Cancel
Save