Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
a47b38c9
Commit
a47b38c9
authored
Mar 14, 2017
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Spelling fixes
From: Josh Soref <jsoref@gmail.com>
parent
f97a028d
Changes
24
Hide whitespace changes
Inline
Side-by-side
Showing
24 changed files
with
34 additions
and
34 deletions
+34
-34
contrib/ltree/ltxtquery_io.c
contrib/ltree/ltxtquery_io.c
+1
-1
doc/src/sgml/biblio.sgml
doc/src/sgml/biblio.sgml
+1
-1
doc/src/sgml/monitoring.sgml
doc/src/sgml/monitoring.sgml
+1
-1
doc/src/sgml/protocol.sgml
doc/src/sgml/protocol.sgml
+3
-3
doc/src/sgml/ref/create_trigger.sgml
doc/src/sgml/ref/create_trigger.sgml
+1
-1
doc/src/sgml/release-8.4.sgml
doc/src/sgml/release-8.4.sgml
+1
-1
doc/src/sgml/release-9.0.sgml
doc/src/sgml/release-9.0.sgml
+1
-1
doc/src/sgml/release-9.1.sgml
doc/src/sgml/release-9.1.sgml
+1
-1
doc/src/sgml/release-9.2.sgml
doc/src/sgml/release-9.2.sgml
+1
-1
doc/src/sgml/release-9.3.sgml
doc/src/sgml/release-9.3.sgml
+1
-1
doc/src/sgml/release-9.4.sgml
doc/src/sgml/release-9.4.sgml
+1
-1
doc/src/sgml/release-9.6.sgml
doc/src/sgml/release-9.6.sgml
+1
-1
doc/src/sgml/release-old.sgml
doc/src/sgml/release-old.sgml
+3
-3
src/backend/access/transam/xlog.c
src/backend/access/transam/xlog.c
+1
-1
src/backend/executor/nodeAgg.c
src/backend/executor/nodeAgg.c
+1
-1
src/backend/optimizer/geqo/geqo_erx.c
src/backend/optimizer/geqo/geqo_erx.c
+1
-1
src/backend/port/dynloader/linux.c
src/backend/port/dynloader/linux.c
+1
-1
src/backend/replication/logical/worker.c
src/backend/replication/logical/worker.c
+1
-1
src/backend/replication/walreceiverfuncs.c
src/backend/replication/walreceiverfuncs.c
+4
-4
src/bin/pg_basebackup/t/030_pg_recvlogical.pl
src/bin/pg_basebackup/t/030_pg_recvlogical.pl
+1
-1
src/include/access/xlog_internal.h
src/include/access/xlog_internal.h
+1
-1
src/interfaces/libpq/bcc32.mak
src/interfaces/libpq/bcc32.mak
+1
-1
src/test/regress/expected/tsdicts.out
src/test/regress/expected/tsdicts.out
+4
-4
src/test/regress/sql/tsdicts.sql
src/test/regress/sql/tsdicts.sql
+1
-1
No files found.
contrib/ltree/ltxtquery_io.c
View file @
a47b38c9
...
...
@@ -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
(
"modifi
cato
rs syntax error"
)));
errmsg
(
"modifi
e
rs syntax error"
)));
*
lenval
+=
charlen
;
}
else
if
(
charlen
==
1
&&
t_iseq
(
state
->
buf
,
'%'
))
...
...
doc/src/sgml/biblio.sgml
View file @
a47b38c9
...
...
@@ -295,7 +295,7 @@ ssimkovi@ag.or.at
<pubdate>April, 1990</pubdate>
<publisher>
<publishername>University of California</publishername>
<address>Berkely, California</address>
<address>Berkel
e
y, California</address>
</publisher>
</biblioset>
</biblioentry>
...
...
doc/src/sgml/monitoring.sgml
View file @
a47b38c9
...
...
@@ -1233,7 +1233,7 @@ postgres 27093 0.0 0.0 30096 2752 ? Ss 11:34 0:00 postgres: ser
</row>
<row>
<entry><literal>MessageQueuePutMessage</></entry>
<entry>Waiting to write a proto
o
col message to a shared message queue.</entry>
<entry>Waiting to write a protocol message to a shared message queue.</entry>
</row>
<row>
<entry><literal>MessageQueueReceive</></entry>
...
...
doc/src/sgml/protocol.sgml
View file @
a47b38c9
...
...
@@ -6019,7 +6019,7 @@ TupleData
</term>
<listitem>
<para>
Iden
f
ifies the data as NULL value.
Iden
t
ifies the data as NULL value.
</para>
</listitem>
</varlistentry>
...
...
@@ -6032,7 +6032,7 @@ TupleData
</term>
<listitem>
<para>
Iden
f
ifies unchanged TOASTed value (the actual value is not
Iden
t
ifies unchanged TOASTed value (the actual value is not
sent).
</para>
</listitem>
...
...
@@ -6046,7 +6046,7 @@ TupleData
</term>
<listitem>
<para>
Iden
f
ifies the data as text formatted value.
Iden
t
ifies the data as text formatted value.
</para>
</listitem>
</varlistentry>
...
...
doc/src/sgml/ref/create_trigger.sgml
View file @
a47b38c9
...
...
@@ -295,7 +295,7 @@ UPDATE OF <replaceable>column_name1</replaceable> [, <replaceable>column_name2</
<term><literal>REFERENCING</literal></term>
<listitem>
<para>
This immediately prece
ed
s the declaration of one or two relations which
This immediately prece
de
s the declaration of one or two relations which
can be used to read the before and/or after images of all rows directly
affected by the triggering statement. An <literal>AFTER EACH ROW</>
trigger is allowed to use both these transition relation names and the
...
...
doc/src/sgml/release-8.4.sgml
View file @
a47b38c9
...
...
@@ -381,7 +381,7 @@
<para>
This prevents scenarios wherein a pathological regular expression
could lock up a server process uninterrupt
a
bly for a long time.
could lock up a server process uninterrupt
i
bly for a long time.
</para>
</listitem>
...
...
doc/src/sgml/release-9.0.sgml
View file @
a47b38c9
...
...
@@ -2250,7 +2250,7 @@
<para>
This prevents scenarios wherein a pathological regular expression
could lock up a server process uninterrupt
a
bly for a long time.
could lock up a server process uninterrupt
i
bly for a long time.
</para>
</listitem>
...
...
doc/src/sgml/release-9.1.sgml
View file @
a47b38c9
...
...
@@ -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 uninterrupt
a
bly for a long time.
could lock up a server process uninterrupt
i
bly for a long time.
</para>
</listitem>
...
...
doc/src/sgml/release-9.2.sgml
View file @
a47b38c9
...
...
@@ -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 uninterrupt
a
bly for a long time.
could lock up a server process uninterrupt
i
bly for a long time.
</para>
</listitem>
...
...
doc/src/sgml/release-9.3.sgml
View file @
a47b38c9
...
...
@@ -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 uninterrupt
a
bly for a long time.
could lock up a server process uninterrupt
i
bly for a long time.
</para>
</listitem>
...
...
doc/src/sgml/release-9.4.sgml
View file @
a47b38c9
...
...
@@ -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 (Ch
r
istopher Browne)
</para>
</listitem>
...
...
doc/src/sgml/release-9.6.sgml
View file @
a47b38c9
...
...
@@ -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</> com
m
and-line utility,
namely assorted compile-time configuration information for
<productname>PostgreSQL</>.
</para>
...
...
doc/src/sgml/release-old.sgml
View file @
a47b38c9
...
...
@@ -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 mem
m
ory leaks, cleanups (Vadim, Massimo)
fix storage manager mem
m
ory 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)
Iden
d
authentication of local users(Bryan)
Iden
t
authentication of local users(Bryan)
Implement BETWEEN qualifier(Bruce)
Implement IN qualifier(Bruce)
libpq has PQgetisnull()(Bruce)
...
...
src/backend/access/transam/xlog.c
View file @
a47b38c9
...
...
@@ -859,7 +859,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
not
exist
Ok
);
int
source
,
bool
not
found
Ok
);
static
int
XLogFileReadAnyTLI
(
XLogSegNo
segno
,
int
emode
,
int
source
);
static
int
XLogPageRead
(
XLogReaderState
*
xlogreader
,
XLogRecPtr
targetPagePtr
,
int
reqLen
,
XLogRecPtr
targetRecPtr
,
char
*
readBuf
,
...
...
src/backend/executor/nodeAgg.c
View file @
a47b38c9
...
...
@@ -486,7 +486,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
*
aggs
t
ate
,
EState
*
estate
,
Aggref
*
aggref
,
Oid
aggtransfn
,
Oid
aggtranstype
,
Oid
aggserialfn
,
Oid
aggdeserialfn
,
Datum
initValue
,
bool
initValueIsNull
,
...
...
src/backend/optimizer/geqo/geqo_erx.c
View file @
a47b38c9
...
...
@@ -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 unu
n
sed point"
);
elog
(
LOG
,
"no edge found via looking for the last unused point"
);
}
...
...
src/backend/port/dynloader/linux.c
View file @
a47b38c9
...
...
@@ -124,7 +124,7 @@ char *
pg_dlerror
(
void
)
{
#ifndef HAVE_DLD_H
return
"dynaloader unspported"
;
return
"dynaloader uns
u
pported"
;
#else
return
dld_strerror
(
dld_errno
);
#endif
...
...
src/backend/replication/logical/worker.c
View file @
a47b38c9
...
...
@@ -575,7 +575,7 @@ check_relation_updatable(LogicalRepRelMapEntry *rel)
ereport
(
ERROR
,
(
errcode
(
ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE
),
errmsg
(
"logical replication target relation
\"
%s.%s
\"
has "
"neither REPLICA IDENTIY index nor PRIMARY "
"neither REPLICA IDENTI
T
Y index nor PRIMARY "
"KEY and published relation does not have "
"REPLICA IDENTITY FULL"
,
rel
->
remoterel
.
nspname
,
rel
->
remoterel
.
relname
)));
...
...
src/backend/replication/walreceiverfuncs.c
View file @
a47b38c9
...
...
@@ -321,7 +321,7 @@ GetReplicationApplyDelay(void)
long
secs
;
int
usecs
;
TimestampTz
chun
c
kReplayStartTime
;
TimestampTz
chunkReplayStartTime
;
SpinLockAcquire
(
&
walrcv
->
mutex
);
receivePtr
=
walrcv
->
receivedUpto
;
...
...
@@ -332,12 +332,12 @@ GetReplicationApplyDelay(void)
if
(
receivePtr
==
replayPtr
)
return
0
;
chun
c
kReplayStartTime
=
GetCurrentChunkReplayStartTime
();
chunkReplayStartTime
=
GetCurrentChunkReplayStartTime
();
if
(
chun
c
kReplayStartTime
==
0
)
if
(
chunkReplayStartTime
==
0
)
return
-
1
;
TimestampDifference
(
chun
c
kReplayStartTime
,
TimestampDifference
(
chunkReplayStartTime
,
GetCurrentTimestamp
(),
&
secs
,
&
usecs
);
...
...
src/bin/pg_basebackup/t/030_pg_recvlogical.pl
View file @
a47b38c9
...
...
@@ -29,7 +29,7 @@ $node->command_fails(['pg_recvlogical', '-S', 'test'],
$node
->
command_fails
(['
pg_recvlogical
',
'
-S
',
'
test
',
'
-d
',
'
postgres
'],
'
pg_recvlogical needs an action
');
$node
->
command_fails
(['
pg_recvlogical
',
'
-S
',
'
test
',
'
-d
',
$node
->
connstr
('
postgres
'),
'
--start
'],
'
no desti
o
nation file
');
'
no destination file
');
$node
->
command_ok
(['
pg_recvlogical
',
'
-S
',
'
test
',
'
-d
',
$node
->
connstr
('
postgres
'),
'
--create-slot
'],
'
slot created
');
...
...
src/include/access/xlog_internal.h
View file @
a47b38c9
...
...
@@ -288,7 +288,7 @@ extern const RmgrData RmgrTable[];
* Exported to support xlog switching from checkpointer
*/
extern
pg_time_t
GetLastSegSwitchData
(
XLogRecPtr
*
lastSwitchLSN
);
extern
XLogRecPtr
RequestXLogSwitch
(
bool
mark_uni
n
mportant
);
extern
XLogRecPtr
RequestXLogSwitch
(
bool
mark_unimportant
);
extern
void
GetOldestRestartPoint
(
XLogRecPtr
*
oldrecptr
,
TimeLineID
*
oldtli
);
...
...
src/interfaces/libpq/bcc32.mak
View file @
a47b38c9
...
...
@@ -8,7 +8,7 @@
!IF
"$(BCB)"
==
""
!MESSAGE
You
must
edit
bcc32.mak
and
define
BCB
at
the
top
!ERROR
miss
s
ing
BCB
!ERROR
missing
BCB
!ENDIF
!IF
"$(__NMAKE__)"
==
""
...
...
src/test/regress/expected/tsdicts.out
View file @
a47b38c9
...
...
@@ -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 (abbrev
i
ation SN)');
to_tsvector
-------------------------------------------------------------
-
'abbrev
i
':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');
...
...
src/test/regress/sql/tsdicts.sql
View file @
a47b38c9
...
...
@@ -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 (abbrev
i
ation SN)'
);
SELECT
to_tsvector
(
'thesaurus_tst'
,
'Booking tickets is looking like a booking a tickets'
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment