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
087d3d05
Commit
087d3d05
authored
Mar 31, 2020
by
Magnus Hagander
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix assorted typos
Author: Daniel Gustafsson <daniel@yesql.se>
parent
de3bbfcc
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
8 additions
and
8 deletions
+8
-8
doc/src/sgml/ref/psql-ref.sgml
doc/src/sgml/ref/psql-ref.sgml
+2
-2
src/backend/storage/ipc/procarray.c
src/backend/storage/ipc/procarray.c
+1
-1
src/backend/tcop/postgres.c
src/backend/tcop/postgres.c
+1
-1
src/backend/utils/adt/jsonfuncs.c
src/backend/utils/adt/jsonfuncs.c
+1
-1
src/backend/utils/mb/stringinfo_mb.c
src/backend/utils/mb/stringinfo_mb.c
+1
-1
src/bin/pg_dump/pg_dump.c
src/bin/pg_dump/pg_dump.c
+1
-1
src/include/access/attmap.h
src/include/access/attmap.h
+1
-1
No files found.
doc/src/sgml/ref/psql-ref.sgml
View file @
087d3d05
...
...
@@ -1293,7 +1293,7 @@ testdb=>
is specified, only members of operator families associated with access
methods whose names match pattern are listed.
If <replaceable class="parameter">input-type-pattern</replaceable>
is specified, only mem
eber
of operator families whose names match the
is specified, only mem
bers
of operator families whose names match the
pattern are listed.
If <literal>+</literal> is appended to the command name, each operator
is listed with its strategy number, purpose and sort operator family.
...
...
@@ -1316,7 +1316,7 @@ testdb=>
is specified, only members of operator families associated with access
methods whose names match pattern are listed.
If <replaceable class="parameter">input-type-pattern</replaceable>
is specified, only mem
eber
of operator families whose names match the
is specified, only mem
bers
of operator families whose names match the
pattern are listed.
</para>
</listitem>
...
...
src/backend/storage/ipc/procarray.c
View file @
087d3d05
...
...
@@ -3028,7 +3028,7 @@ TerminateOtherDBBackends(Oid databaseId)
/*
* Check whether we have the necessary rights to terminate other
* sessions. We don't terminate any session until
l
we ensure that we
* sessions. We don't terminate any session until we ensure that we
* have rights on all the sessions to be terminated. These checks are
* the same as we do in pg_terminate_backend.
*
...
...
src/backend/tcop/postgres.c
View file @
087d3d05
...
...
@@ -2338,7 +2338,7 @@ check_log_duration(char *msec_str, bool was_logged)
/*
* Do not log if log_statement_sample_rate = 0. Log a sample if
* log_statement_sample_rate <= 1 and avoid unecessary random() call
* log_statement_sample_rate <= 1 and avoid un
n
ecessary random() call
* if log_statement_sample_rate = 1.
*/
if
(
exceeded_sample_duration
)
...
...
src/backend/utils/adt/jsonfuncs.c
View file @
087d3d05
...
...
@@ -489,7 +489,7 @@ static void transform_string_values_scalar(void *state, char *token, JsonTokenTy
/*
* pg_parse_json_or_ereport
*
* This fuction is like pg_parse_json, except that it does not return a
* This fu
n
ction is like pg_parse_json, except that it does not return a
* JsonParseErrorType. Instead, in case of any failure, this function will
* ereport(ERROR).
*/
...
...
src/backend/utils/mb/stringinfo_mb.c
View file @
087d3d05
/*-------------------------------------------------------------------------
*
* stringinfo_mb.c
* Multibyte encoding-aware additional StringInfo facilites
* Multibyte encoding-aware additional StringInfo facilit
i
es
*
* This is separate from common/stringinfo.c so that frontend users
* of that file need not pull in unnecessary multibyte-encoding support
...
...
src/bin/pg_dump/pg_dump.c
View file @
087d3d05
...
...
@@ -16719,7 +16719,7 @@ dumpStatisticsExt(Archive *fout, StatsExtInfo *statsextinfo)
/*
* We only issue an ALTER STATISTICS statement if the stxstattarget entry
* for this stati
c
tics object is non-negative (i.e. it's not the default
* for this stati
s
tics object is non-negative (i.e. it's not the default
* value).
*/
if
(
statsextinfo
->
stattarget
>=
0
)
...
...
src/include/access/attmap.h
View file @
087d3d05
...
...
@@ -40,7 +40,7 @@ typedef struct AttrMap
extern
AttrMap
*
make_attrmap
(
int
maplen
);
extern
void
free_attrmap
(
AttrMap
*
map
);
/* Conver
t
ion routines to build mappings */
/* Conver
s
ion routines to build mappings */
extern
AttrMap
*
build_attrmap_by_name
(
TupleDesc
indesc
,
TupleDesc
outdesc
);
extern
AttrMap
*
build_attrmap_by_name_if_req
(
TupleDesc
indesc
,
...
...
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