diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-04-12 20:38:31 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-04-12 20:38:31 +0000 |
commit | 9999f5a10e722c052006886b678995695001958a (patch) | |
tree | ee8b463a3369b5b4283ebb5aa893549de7c3fc45 /src/backend/executor/execUtils.c | |
parent | 79b60cb132824a4939178b3ce9ded5c220a0f179 (diff) | |
download | postgresql-9999f5a10e722c052006886b678995695001958a.tar.gz postgresql-9999f5a10e722c052006886b678995695001958a.zip |
Checking to decide whether relations are system relations now depends
on the namespace not the name; pg_ is not a reserved prefix for table
names anymore. From Fernando Nasser.
Diffstat (limited to 'src/backend/executor/execUtils.c')
-rw-r--r-- | src/backend/executor/execUtils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/execUtils.c b/src/backend/executor/execUtils.c index 5b071948779..9b03401e444 100644 --- a/src/backend/executor/execUtils.c +++ b/src/backend/executor/execUtils.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/executor/execUtils.c,v 1.79 2002/02/19 20:11:13 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/execUtils.c,v 1.80 2002/04/12 20:38:26 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -467,7 +467,7 @@ ExecOpenIndices(ResultRelInfo *resultRelInfo) if (!RelationGetForm(resultRelation)->relhasindex) return; if (IsIgnoringSystemIndexes() && - IsSystemRelationName(RelationGetRelationName(resultRelation))) + IsSystemRelation(resultRelation)) return; /* |