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
53020d0f
Commit
53020d0f
authored
May 30, 2001
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove OLD_FILE_NAMING code. No longer used.
parent
06e5f1df
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
16 additions
and
152 deletions
+16
-152
src/backend/catalog/catalog.c
src/backend/catalog/catalog.c
+1
-87
src/backend/catalog/index.c
src/backend/catalog/index.c
+2
-17
src/backend/commands/indexcmds.c
src/backend/commands/indexcmds.c
+1
-5
src/backend/tcop/utility.c
src/backend/tcop/utility.c
+1
-13
src/backend/utils/init/postinit.c
src/backend/utils/init/postinit.c
+1
-4
src/backend/utils/misc/database.c
src/backend/utils/misc/database.c
+5
-13
src/include/catalog/catalog.h
src/include/catalog/catalog.h
+1
-10
src/include/catalog/index.h
src/include/catalog/index.h
+1
-3
src/interfaces/odbc/connection.h
src/interfaces/odbc/connection.h
+3
-0
No files found.
src/backend/catalog/catalog.c
View file @
53020d0f
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/catalog.c,v 1.4
1 2001/05/30 14:15:26
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/catalog.c,v 1.4
2 2001/05/30 20:52:32
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -22,91 +22,6 @@
#include "miscadmin.h"
#include "utils/lsyscache.h"
#ifdef OLD_FILE_NAMING
/*
* relpath - construct path to a relation's file
*
* Note that this only works with relations that are visible to the current
* backend, ie, either in the current database or shared system relations.
*
* Result is a palloc'd string.
*/
char
*
relpath
(
const
char
*
relname
)
{
char
*
path
;
if
(
IsSharedSystemRelationName
(
relname
))
{
/* Shared system relations live in {datadir}/global */
size_t
bufsize
=
strlen
(
DataDir
)
+
8
+
sizeof
(
NameData
)
+
1
;
path
=
(
char
*
)
palloc
(
bufsize
);
snprintf
(
path
,
bufsize
,
"%s/global/%s"
,
DataDir
,
relname
);
return
path
;
}
/*
* If it is in the current database, assume it is in current working
* directory. NB: this does not work during bootstrap!
*/
return
pstrdup
(
relname
);
}
/*
* relpath_blind - construct path to a relation's file
*
* Construct the path using only the info available to smgrblindwrt,
* namely the names and OIDs of the database and relation. (Shared system
* relations are identified with dbid = 0.) Note that we may have to
* access a relation belonging to a different database!
*
* Result is a palloc'd string.
*/
char
*
relpath_blind
(
const
char
*
dbname
,
const
char
*
relname
,
Oid
dbid
,
Oid
relid
)
{
char
*
path
;
if
(
dbid
==
(
Oid
)
0
)
{
/* Shared system relations live in {datadir}/global */
path
=
(
char
*
)
palloc
(
strlen
(
DataDir
)
+
8
+
sizeof
(
NameData
)
+
1
);
sprintf
(
path
,
"%s/global/%s"
,
DataDir
,
relname
);
}
else
if
(
dbid
==
MyDatabaseId
)
{
/* XXX why is this inconsistent with relpath() ? */
path
=
(
char
*
)
palloc
(
strlen
(
DatabasePath
)
+
sizeof
(
NameData
)
+
2
);
sprintf
(
path
,
"%s/%s"
,
DatabasePath
,
relname
);
}
else
{
/* this is work around only !!! */
char
dbpathtmp
[
MAXPGPATH
];
Oid
id
;
char
*
dbpath
;
GetRawDatabaseInfo
(
dbname
,
&
id
,
dbpathtmp
);
if
(
id
!=
dbid
)
elog
(
FATAL
,
"relpath_blind: oid of db %s is not %u"
,
dbname
,
dbid
);
dbpath
=
ExpandDatabasePath
(
dbpathtmp
);
if
(
dbpath
==
NULL
)
elog
(
FATAL
,
"relpath_blind: can't expand path for db %s"
,
dbname
);
path
=
(
char
*
)
palloc
(
strlen
(
dbpath
)
+
sizeof
(
NameData
)
+
2
);
sprintf
(
path
,
"%s/%s"
,
dbpath
,
relname
);
pfree
(
dbpath
);
}
return
path
;
}
#else
/* ! OLD_FILE_NAMING */
/*
* relpath - construct path to a relation's file
*
...
...
@@ -157,7 +72,6 @@ GetDatabasePath(Oid tblNode)
return
path
;
}
#endif
/* OLD_FILE_NAMING */
/*
* IsSystemRelationName
...
...
src/backend/catalog/index.c
View file @
53020d0f
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.15
1 2001/05/18 22:35:50
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.15
2 2001/05/30 20:52:32
momjian Exp $
*
*
* INTERFACE ROUTINES
...
...
@@ -1350,11 +1350,7 @@ setRelhasindex(Oid relid, bool hasindex)
*/
pg_class
=
heap_openr
(
RelationRelationName
,
RowExclusiveLock
);
#ifdef OLD_FILE_NAMING
if
(
!
IsIgnoringSystemIndexes
())
#else
if
(
!
IsIgnoringSystemIndexes
()
&&
(
!
IsReindexProcessing
()
||
pg_class
->
rd_rel
->
relhasindex
))
#endif
/* OLD_FILE_NAMING */
{
tuple
=
SearchSysCacheCopy
(
RELOID
,
ObjectIdGetDatum
(
relid
),
...
...
@@ -1424,7 +1420,6 @@ setRelhasindex(Oid relid, bool hasindex)
heap_close
(
pg_class
,
RowExclusiveLock
);
}
#ifndef OLD_FILE_NAMING
void
setNewRelfilenode
(
Relation
relation
)
{
...
...
@@ -1494,7 +1489,6 @@ setNewRelfilenode(Relation relation)
CommandCounterIncrement
();
}
#endif
/* OLD_FILE_NAMING */
/* ----------------
* UpdateStats
...
...
@@ -1553,11 +1547,7 @@ UpdateStats(Oid relid, double reltuples)
*/
pg_class
=
heap_openr
(
RelationRelationName
,
RowExclusiveLock
);
#ifdef OLD_FILE_NAMING
in_place_upd
=
(
IsReindexProcessing
()
||
IsBootstrapProcessingMode
());
#else
in_place_upd
=
(
IsIgnoringSystemIndexes
()
||
IsReindexProcessing
());
#endif
/* OLD_FILE_NAMING */
if
(
!
in_place_upd
)
{
...
...
@@ -2000,14 +1990,12 @@ reindex_index(Oid indexId, bool force, bool inplace)
if
(
iRel
==
NULL
)
elog
(
ERROR
,
"reindex_index: can't open index relation"
);
#ifndef OLD_FILE_NAMING
if
(
!
inplace
)
{
inplace
=
IsSharedSystemRelationName
(
NameStr
(
iRel
->
rd_rel
->
relname
));
if
(
!
inplace
)
setNewRelfilenode
(
iRel
);
}
#endif
/* OLD_FILE_NAMING */
/* Obtain exclusive lock on it, just to be sure */
LockRelation
(
iRel
,
AccessExclusiveLock
);
...
...
@@ -2084,9 +2072,6 @@ reindex_relation(Oid relid, bool force)
overwrite
,
upd_pg_class_inplace
;
#ifdef OLD_FILE_NAMING
overwrite
=
upd_pg_class_inplace
=
deactivate_needed
=
true
;
#else
Relation
rel
;
overwrite
=
upd_pg_class_inplace
=
deactivate_needed
=
false
;
...
...
@@ -2138,7 +2123,7 @@ reindex_relation(Oid relid, bool force)
elog
(
ERROR
,
"the target relation %u is shared"
,
relid
);
}
RelationClose
(
rel
);
#endif
/* OLD_FILE_NAMING */
old
=
SetReindexProcessing
(
true
);
if
(
deactivate_needed
)
{
...
...
src/backend/commands/indexcmds.c
View file @
53020d0f
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.4
7 2001/03/22 06:16:11
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.4
8 2001/05/30 20:52:32
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -654,13 +654,9 @@ ReindexIndex(const char *name, bool force /* currently unused */ )
elog
(
ERROR
,
"relation
\"
%s
\"
is of type
\"
%c
\"
"
,
name
,
((
Form_pg_class
)
GETSTRUCT
(
tuple
))
->
relkind
);
#ifdef OLD_FILE_NAMING
if
(
!
reindex_index
(
tuple
->
t_data
->
t_oid
,
force
,
false
))
#else
if
(
IsIgnoringSystemIndexes
())
overwrite
=
true
;
if
(
!
reindex_index
(
tuple
->
t_data
->
t_oid
,
force
,
overwrite
))
#endif
/* OLD_FILE_NAMING */
elog
(
NOTICE
,
"index
\"
%s
\"
wasn't reindexed"
,
name
);
ReleaseSysCache
(
tuple
);
...
...
src/backend/tcop/utility.c
View file @
53020d0f
...
...
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.11
1 2001/05/27 09:59:29 petere
Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.11
2 2001/05/30 20:52:32 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -891,18 +891,6 @@ ProcessUtility(Node *parsetree,
break
;
case
TABLE
:
relname
=
(
char
*
)
stmt
->
name
;
if
(
IsSystemRelationName
(
relname
))
{
#ifdef OLD_FILE_NAMING
if
(
!
allowSystemTableMods
&&
IsSystemRelationName
(
relname
))
elog
(
ERROR
,
"
\"
%s
\"
is a system table. call REINDEX under standalone postgres with -O -P options"
,
relname
);
if
(
!
IsIgnoringSystemIndexes
())
elog
(
ERROR
,
"
\"
%s
\"
is a system table. call REINDEX under standalone postgres with -P -O options"
,
relname
);
#endif
/* OLD_FILE_NAMING */
}
if
(
!
pg_ownercheck
(
GetUserId
(),
relname
,
RELNAME
))
elog
(
ERROR
,
"%s: %s"
,
relname
,
aclcheck_error_strings
[
ACLCHECK_NOT_OWNER
]);
ReindexTable
(
relname
,
stmt
->
force
);
...
...
src/backend/utils/init/postinit.c
View file @
53020d0f
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.8
5 2001/05/08 21:06:43 petere
Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.8
6 2001/05/30 20:52:32 momjian
Exp $
*
*
*-------------------------------------------------------------------------
...
...
@@ -21,10 +21,7 @@
#include <math.h>
#include <unistd.h>
#ifndef OLD_FILE_NAMING
#include "catalog/catalog.h"
#endif
#include "access/heapam.h"
#include "catalog/catname.h"
#include "catalog/pg_database.h"
...
...
src/backend/utils/misc/database.c
View file @
53020d0f
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/misc/Attic/database.c,v 1.4
6 2001/05/30 14:15:27
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/misc/Attic/database.c,v 1.4
7 2001/05/30 20:52:34
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -140,19 +140,11 @@ GetRawDatabaseInfo(const char *name, Oid *db_id, char *path)
Page
pg
;
char
*
dbfname
;
Form_pg_database
tup_db
;
RelFileNode
rnode
;
#ifdef OLD_FILE_NAMING
dbfname
=
(
char
*
)
palloc
(
strlen
(
DataDir
)
+
8
+
strlen
(
DatabaseRelationName
)
+
2
);
sprintf
(
dbfname
,
"%s/global/%s"
,
DataDir
,
DatabaseRelationName
);
#else
{
RelFileNode
rnode
;
rnode
.
tblNode
=
0
;
rnode
.
relNode
=
RelOid_pg_database
;
dbfname
=
relpath
(
rnode
);
}
#endif
rnode
.
tblNode
=
0
;
rnode
.
relNode
=
RelOid_pg_database
;
dbfname
=
relpath
(
rnode
);
if
((
dbfd
=
open
(
dbfname
,
O_RDONLY
|
PG_BINARY
,
0
))
<
0
)
elog
(
FATAL
,
"cannot open %s: %m"
,
dbfname
);
...
...
src/include/catalog/catalog.h
View file @
53020d0f
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: catalog.h,v 1.1
6 2001/03/22 04:00
:34 momjian Exp $
* $Id: catalog.h,v 1.1
7 2001/05/30 20:52
:34 momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -16,20 +16,11 @@
#include "access/tupdesc.h"
#ifdef OLD_FILE_NAMING
extern
char
*
relpath
(
const
char
*
relname
);
extern
char
*
relpath_blind
(
const
char
*
dbname
,
const
char
*
relname
,
Oid
dbid
,
Oid
relid
);
#else
#include "storage/relfilenode.h"
extern
char
*
relpath
(
RelFileNode
rnode
);
extern
char
*
GetDatabasePath
(
Oid
tblNode
);
#endif
extern
bool
IsSystemRelationName
(
const
char
*
relname
);
extern
bool
IsSharedSystemRelationName
(
const
char
*
relname
);
...
...
src/include/catalog/index.h
View file @
53020d0f
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: index.h,v 1.3
4 2001/05/07 00:43:24 tgl
Exp $
* $Id: index.h,v 1.3
5 2001/05/30 20:52:34 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -50,10 +50,8 @@ extern void UpdateStats(Oid relid, double reltuples);
extern
bool
IndexesAreActive
(
Oid
relid
,
bool
comfirmCommitted
);
extern
void
setRelhasindex
(
Oid
relid
,
bool
hasindex
);
#ifndef OLD_FILE_NAMING
extern
void
setNewRelfilenode
(
Relation
relation
);
#endif
/* OLD_FILE_NAMING */
extern
bool
SetReindexProcessing
(
bool
processing
);
extern
bool
IsReindexProcessing
(
void
);
...
...
src/interfaces/odbc/connection.h
View file @
53020d0f
...
...
@@ -9,6 +9,9 @@
#ifndef __CONNECTION_H__
#define __CONNECTION_H__
#include <stdlib.h>
#include <string.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
...
...
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