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
228c1e74
Commit
228c1e74
authored
Dec 09, 2000
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Suppress compiler warnings.
parent
457f0b89
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/backend/catalog/index.c
src/backend/catalog/index.c
+3
-2
src/backend/utils/cache/relcache.c
src/backend/utils/cache/relcache.c
+1
-2
No files found.
src/backend/catalog/index.c
View file @
228c1e74
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.13
1 2000/12/08 06:17:57 inoue
Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.13
2 2000/12/09 20:31:43 tgl
Exp $
*
*
* INTERFACE ROUTINES
...
...
@@ -21,6 +21,7 @@
*/
#include "postgres.h"
#include <unistd.h>
#include "access/genam.h"
#include "access/heapam.h"
...
...
@@ -1513,7 +1514,7 @@ setNewRelfilenode(Relation relation)
Oid
newrelfilenode
;
bool
in_place_update
=
false
;
HeapTupleData
lockTupleData
;
HeapTuple
classTuple
;
HeapTuple
classTuple
=
NULL
;
Buffer
buffer
;
RelationData
workrel
;
...
...
src/backend/utils/cache/relcache.c
View file @
228c1e74
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/cache/relcache.c,v 1.1
19 2000/12/08 06:17:56 inoue
Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/cache/relcache.c,v 1.1
20 2000/12/09 20:32:44 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -253,7 +253,6 @@ static void RelationClearRelation(Relation relation, bool rebuildIt);
#ifdef ENABLE_REINDEX_NAILED_RELATIONS
static
void
RelationReloadClassinfo
(
Relation
relation
);
#endif
/* ENABLE_REINDEX_NAILED_RELATIONS */
static
void
RelationResetRelation
(
Relation
relation
,
bool
rebuildIt
);
static
void
RelationFlushRelation
(
Relation
*
relationPtr
,
int
skipLocalRelations
);
static
Relation
RelationNameCacheGetRelation
(
const
char
*
relationName
);
...
...
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