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
7c8927bf
Commit
7c8927bf
authored
Jan 04, 2007
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some small typos in comments. Greg Stark
parent
a252994a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
src/backend/access/gin/ginvacuum.c
src/backend/access/gin/ginvacuum.c
+3
-3
src/backend/access/heap/tuptoaster.c
src/backend/access/heap/tuptoaster.c
+3
-3
src/include/catalog/pg_type.h
src/include/catalog/pg_type.h
+2
-2
No files found.
src/backend/access/gin/ginvacuum.c
View file @
7c8927bf
...
...
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/gin/ginvacuum.c,v 1.
9 2006/11/30 16:22:32 teodor
Exp $
* $PostgreSQL: pgsql/src/backend/access/gin/ginvacuum.c,v 1.
10 2007/01/04 16:29:41 tgl
Exp $
*-------------------------------------------------------------------------
*/
...
...
@@ -34,8 +34,8 @@ typedef struct
/*
* Cleans array of ItemPointer (removes dead pointers)
* Results are always stored in *cleaned, which will be allocated
* if its needed. In case of *cleaned!=NULL caller is responsible to
* enough space. *cleaned and items may point to the same
* if it
'
s needed. In case of *cleaned!=NULL caller is responsible to
*
have allocated
enough space. *cleaned and items may point to the same
* memory address.
*/
...
...
src/backend/access/heap/tuptoaster.c
View file @
7c8927bf
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/heap/tuptoaster.c,v 1.6
6 2006/10/05 23:33:33
tgl Exp $
* $PostgreSQL: pgsql/src/backend/access/heap/tuptoaster.c,v 1.6
7 2007/01/04 16:29:41
tgl Exp $
*
*
* INTERFACE ROUTINES
...
...
@@ -1113,7 +1113,7 @@ toast_delete_datum(Relation rel, Datum value)
return
;
/*
* Open the toast relation and it
'
s index
* Open the toast relation and its index
*/
toastrel
=
heap_open
(
attr
->
va_content
.
va_external
.
va_toastrelid
,
RowExclusiveLock
);
...
...
@@ -1337,7 +1337,7 @@ toast_fetch_datum_slice(varattrib *attr, int32 sliceoffset, int32 length)
endoffset
=
(
sliceoffset
+
length
-
1
)
%
TOAST_MAX_CHUNK_SIZE
;
/*
* Open the toast relation and it
'
s index
* Open the toast relation and its index
*/
toastrel
=
heap_open
(
attr
->
va_content
.
va_external
.
va_toastrelid
,
AccessShareLock
);
...
...
src/include/catalog/pg_type.h
View file @
7c8927bf
...
...
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/catalog/pg_type.h,v 1.17
7 2007/01/03 01:19:51 darcy
Exp $
* $PostgreSQL: pgsql/src/include/catalog/pg_type.h,v 1.17
8 2007/01/04 16:29:42 tgl
Exp $
*
* NOTES
* the genbki.sh script reads this file and generates .bki
...
...
@@ -244,7 +244,7 @@ typedef FormData_pg_type *Form_pg_type;
* ----------------
*/
/* keep the following ordered by OID so that later changes can be made
easier
*/
/* keep the following ordered by OID so that later changes can be made
more easily
*/
/* Make sure the typlen, typbyval, and typalign values here match the initial
values for attlen, attbyval, and attalign in both places in pg_attribute.h
...
...
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