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
dbcaee49
Commit
dbcaee49
authored
Feb 01, 2007
by
Neil Conway
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a few typos in comments in GiN.
parent
b3687889
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
10 deletions
+10
-10
src/backend/access/gin/ginbtree.c
src/backend/access/gin/ginbtree.c
+2
-2
src/backend/access/gin/ginbulk.c
src/backend/access/gin/ginbulk.c
+2
-2
src/backend/access/gin/ginget.c
src/backend/access/gin/ginget.c
+2
-2
src/backend/access/gin/gininsert.c
src/backend/access/gin/gininsert.c
+2
-2
src/backend/access/gin/ginvacuum.c
src/backend/access/gin/ginvacuum.c
+2
-2
No files found.
src/backend/access/gin/ginbtree.c
View file @
dbcaee49
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/gin/ginbtree.c,v 1.
7 2007/01/05 22:19:21 momjian
Exp $
* $PostgreSQL: pgsql/src/backend/access/gin/ginbtree.c,v 1.
8 2007/02/01 04:16:07 neilc
Exp $
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -317,7 +317,7 @@ ginInsertValue(GinBtree btree, GinBtreeStack *stack)
...
@@ -317,7 +317,7 @@ ginInsertValue(GinBtree btree, GinBtreeStack *stack)
/*
/*
* newlpage is a pointer to memory page, it doesn't associate
* newlpage is a pointer to memory page, it doesn't associate
* with buffer, stack->buffer shoud be untouched
* with buffer, stack->buffer shou
l
d be untouched
*/
*/
newlpage
=
btree
->
splitPage
(
btree
,
stack
->
buffer
,
rbuffer
,
stack
->
off
,
&
rdata
);
newlpage
=
btree
->
splitPage
(
btree
,
stack
->
buffer
,
rbuffer
,
stack
->
off
,
&
rdata
);
...
...
src/backend/access/gin/ginbulk.c
View file @
dbcaee49
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/gin/ginbulk.c,v 1.
8 2007/01/31 15:09:45 teodor
Exp $
* $PostgreSQL: pgsql/src/backend/access/gin/ginbulk.c,v 1.
9 2007/02/01 04:16:08 neilc
Exp $
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -187,7 +187,7 @@ ginChooseElem(BuildAccumulator *accum, ItemPointer heapptr, Datum *entries, uint
...
@@ -187,7 +187,7 @@ ginChooseElem(BuildAccumulator *accum, ItemPointer heapptr, Datum *entries, uint
/*
/*
* Insert one heap pointer. Suppose entries is sorted.
* Insert one heap pointer. Suppose entries is sorted.
* Insertion order tr
y
s to get binary tree balanced: first insert middle value,
* Insertion order tr
ie
s to get binary tree balanced: first insert middle value,
* next middle on left part and middle of right part.
* next middle on left part and middle of right part.
*/
*/
void
void
...
...
src/backend/access/gin/ginget.c
View file @
dbcaee49
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/gin/ginget.c,v 1.
6 2007/01/31 15:09:45 teodor
Exp $
* $PostgreSQL: pgsql/src/backend/access/gin/ginget.c,v 1.
7 2007/02/01 04:16:08 neilc
Exp $
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -168,7 +168,7 @@ startScanKey(Relation index, GinState *ginstate, GinScanKey key)
...
@@ -168,7 +168,7 @@ startScanKey(Relation index, GinState *ginstate, GinScanKey key)
if
(
GinFuzzySearchLimit
>
0
)
if
(
GinFuzzySearchLimit
>
0
)
{
{
/*
/*
* If all of keys more than treshold we will try to reduce result,
* If all of keys more than t
h
reshold we will try to reduce result,
* we hope (and only hope, for intersection operation of array our
* we hope (and only hope, for intersection operation of array our
* supposition isn't true), that total result will not more than
* supposition isn't true), that total result will not more than
* minimal predictNumberResult.
* minimal predictNumberResult.
...
...
src/backend/access/gin/gininsert.c
View file @
dbcaee49
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/gin/gininsert.c,v 1.
7 2007/01/31 15:09:45 teodor
Exp $
* $PostgreSQL: pgsql/src/backend/access/gin/gininsert.c,v 1.
8 2007/02/01 04:16:08 neilc
Exp $
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -197,7 +197,7 @@ ginEntryInsert(Relation index, GinState *ginstate, Datum value, ItemPointerData
...
@@ -197,7 +197,7 @@ ginEntryInsert(Relation index, GinState *ginstate, Datum value, ItemPointerData
/*
/*
* Saves indexed value in memory accumulator during index creation
* Saves indexed value in memory accumulator during index creation
* Function isnt use during normal insert
* Function isn
'
t use during normal insert
*/
*/
static
uint32
static
uint32
ginHeapTupleBulkInsert
(
GinBuildState
*
buildstate
,
Datum
value
,
ItemPointer
heapptr
)
ginHeapTupleBulkInsert
(
GinBuildState
*
buildstate
,
Datum
value
,
ItemPointer
heapptr
)
...
...
src/backend/access/gin/ginvacuum.c
View file @
dbcaee49
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/gin/ginvacuum.c,v 1.1
1 2007/01/05 22:19:21 momjian
Exp $
* $PostgreSQL: pgsql/src/backend/access/gin/ginvacuum.c,v 1.1
2 2007/02/01 04:16:08 neilc
Exp $
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -466,7 +466,7 @@ ginVacuumPostingTree(GinVacuumState *gvs, BlockNumber rootBlkno)
...
@@ -466,7 +466,7 @@ ginVacuumPostingTree(GinVacuumState *gvs, BlockNumber rootBlkno)
/*
/*
* returns modified page or NULL if page isn't modified.
* returns modified page or NULL if page isn't modified.
* Function works with original page until first change is occured,
* Function works with original page until first change is occur
r
ed,
* then page is copied into temporary one.
* then page is copied into temporary one.
*/
*/
static
Page
static
Page
...
...
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