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
c9fc28a7
Commit
c9fc28a7
authored
Jun 01, 2013
by
Stephen Frost
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor spelling fixes
Fix a few spelling mistakes. Per bug report #8193 from Lajos Veres.
parent
551938ae
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
contrib/pg_upgrade/relfilenode.c
contrib/pg_upgrade/relfilenode.c
+1
-1
src/backend/access/transam/xlogreader.c
src/backend/access/transam/xlogreader.c
+1
-1
src/backend/utils/adt/tsrank.c
src/backend/utils/adt/tsrank.c
+4
-4
src/tools/pgindent/typedefs.list
src/tools/pgindent/typedefs.list
+1
-1
No files found.
contrib/pg_upgrade/relfilenode.c
View file @
c9fc28a7
...
...
@@ -258,7 +258,7 @@ transfer_relfile(pageCnvCtx *pageConverter, FileNameMap *map,
if
(
errno
==
ENOENT
)
return
;
else
pg_log
(
PG_FATAL
,
"error while checking for file exist
a
nce
\"
%s.%s
\"
(
\"
%s
\"
to
\"
%s
\"
): %s
\n
"
,
pg_log
(
PG_FATAL
,
"error while checking for file exist
e
nce
\"
%s.%s
\"
(
\"
%s
\"
to
\"
%s
\"
): %s
\n
"
,
map
->
nspname
,
map
->
relname
,
old_file
,
new_file
,
getErrorText
(
errno
));
}
...
...
src/backend/access/transam/xlogreader.c
View file @
c9fc28a7
...
...
@@ -903,7 +903,7 @@ ValidXLogPageHeader(XLogReaderState *state, XLogRecPtr recptr,
/*
* Find the first record with at an lsn >= RecPtr.
*
* Useful for checking wether RecPtr is a valid xlog address for reading and to
* Useful for checking w
h
ether RecPtr is a valid xlog address for reading and to
* find the first valid address after some address when dumping records for
* debugging purposes.
*/
...
...
src/backend/utils/adt/tsrank.c
View file @
c9fc28a7
...
...
@@ -530,11 +530,11 @@ typedef struct
int
q
;
DocRepresentation
*
begin
;
DocRepresentation
*
end
;
}
Extention
;
}
CoverExt
;
static
bool
Cover
(
DocRepresentation
*
doc
,
int
len
,
QueryRepresentation
*
qr
,
Extention
*
ext
)
Cover
(
DocRepresentation
*
doc
,
int
len
,
QueryRepresentation
*
qr
,
CoverExt
*
ext
)
{
DocRepresentation
*
ptr
;
int
lastpos
=
ext
->
pos
;
...
...
@@ -729,7 +729,7 @@ calc_rank_cd(float4 *arrdata, TSVector txt, TSQuery query, int method)
int
len
,
i
,
doclen
=
0
;
Extention
ext
;
CoverExt
ext
;
double
Wdoc
=
0
.
0
;
double
invws
[
lengthof
(
weights
)];
double
SumDist
=
0
.
0
,
...
...
@@ -759,7 +759,7 @@ calc_rank_cd(float4 *arrdata, TSVector txt, TSQuery query, int method)
return
0
.
0
;
}
MemSet
(
&
ext
,
0
,
sizeof
(
Extention
));
MemSet
(
&
ext
,
0
,
sizeof
(
CoverExt
));
while
(
Cover
(
doc
,
doclen
,
&
qr
,
&
ext
))
{
double
Cpos
=
0
.
0
;
...
...
src/tools/pgindent/typedefs.list
View file @
c9fc28a7
...
...
@@ -326,6 +326,7 @@ CopyStmt
Cost
CostSelector
Counters
CoverExt
CoverPos
CreateCastStmt
CreateConversionStmt
...
...
@@ -487,7 +488,6 @@ ExtensionBehavior
ExtensionControlFile
ExtensionInfo
ExtensionVersionInfo
Extention
FDWCollateState
FD_SET
FILE
...
...
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