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
4d0f669f
Commit
4d0f669f
authored
Nov 11, 2004
by
Neil Conway
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove obsolete comment from btbuild() and hashbuild(): we no longer use
a global variable to control building indexes.
parent
5bf218d2
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
12 deletions
+2
-12
src/backend/access/hash/hash.c
src/backend/access/hash/hash.c
+1
-6
src/backend/access/nbtree/nbtree.c
src/backend/access/nbtree/nbtree.c
+1
-6
No files found.
src/backend/access/hash/hash.c
View file @
4d0f669f
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/hash/hash.c,v 1.7
3 2004/08/29 05:06:40 momjian
Exp $
* $PostgreSQL: pgsql/src/backend/access/hash/hash.c,v 1.7
4 2004/11/11 00:32:40 neilc
Exp $
*
* NOTES
* This file contains only the public interface routines.
...
...
@@ -44,11 +44,6 @@ static void hashbuildCallback(Relation index,
/*
* hashbuild() -- build a new hash index.
*
* We use a global variable to record the fact that we're creating
* a new index. This is used to avoid high-concurrency locking,
* since the index won't be visible until this transaction commits
* and since building is guaranteed to be single-threaded.
*/
Datum
hashbuild
(
PG_FUNCTION_ARGS
)
...
...
src/backend/access/nbtree/nbtree.c
View file @
4d0f669f
...
...
@@ -12,7 +12,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/nbtree/nbtree.c,v 1.12
0 2004/08/29 04:12:21 momjian
Exp $
* $PostgreSQL: pgsql/src/backend/access/nbtree/nbtree.c,v 1.12
1 2004/11/11 00:32:50 neilc
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -60,11 +60,6 @@ static void btbuildCallback(Relation index,
/*
* btbuild() -- build a new btree index.
*
* We use a global variable to record the fact that we're creating
* a new index. This is used to avoid high-concurrency locking,
* since the index won't be visible until this transaction commits
* and since building is guaranteed to be single-threaded.
*/
Datum
btbuild
(
PG_FUNCTION_ARGS
)
...
...
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