*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/catalog/catalog.c,v 1.41 2001/05/30 14:15:26 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/catalog/catalog.c,v 1.42 2001/05/30 20:52:32 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#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
*
return path;
}
-#endif /* OLD_FILE_NAMING */
/*
* IsSystemRelationName
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.151 2001/05/18 22:35:50 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.152 2001/05/30 20:52:32 momjian Exp $
*
*
* INTERFACE ROUTINES
*/
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),
heap_close(pg_class, RowExclusiveLock);
}
-#ifndef OLD_FILE_NAMING
void
setNewRelfilenode(Relation relation)
{
CommandCounterIncrement();
}
-#endif /* OLD_FILE_NAMING */
/* ----------------
* UpdateStats
*/
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)
{
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);
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;
elog(ERROR, "the target relation %u is shared", relid);
}
RelationClose(rel);
-#endif /* OLD_FILE_NAMING */
+
old = SetReindexProcessing(true);
if (deactivate_needed)
{
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.47 2001/03/22 06:16:11 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.48 2001/05/30 20:52:32 momjian Exp $
*
*-------------------------------------------------------------------------
*/
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);
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.111 2001/05/27 09:59:29 petere Exp $
+ * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.112 2001/05/30 20:52:32 momjian Exp $
*
*-------------------------------------------------------------------------
*/
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);
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.85 2001/05/08 21:06:43 petere Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.86 2001/05/30 20:52:32 momjian Exp $
*
*
*-------------------------------------------------------------------------
#include
#include
-#ifndef OLD_FILE_NAMING
#include "catalog/catalog.h"
-#endif
-
#include "access/heapam.h"
#include "catalog/catname.h"
#include "catalog/pg_database.h"
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/misc/Attic/database.c,v 1.46 2001/05/30 14:15:27 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/misc/Attic/database.c,v 1.47 2001/05/30 20:52:34 momjian Exp $
*
*-------------------------------------------------------------------------
*/
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);
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: catalog.h,v 1.16 2001/03/22 04:00:34 momjian Exp $
+ * $Id: catalog.h,v 1.17 2001/05/30 20:52:34 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#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);
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: index.h,v 1.34 2001/05/07 00:43:24 tgl Exp $
+ * $Id: index.h,v 1.35 2001/05/30 20:52:34 momjian Exp $
*
*-------------------------------------------------------------------------
*/
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);
#ifndef __CONNECTION_H__
#define __CONNECTION_H__
+#include
+#include
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif