diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-06-19 05:11:50 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-06-19 05:11:50 +0000 |
commit | d47e10bfde24d0aa2ba11e17b728495534cd44d7 (patch) | |
tree | 7e126442988dd5fb09f575e1b105ad99608a394e /src | |
parent | 8804bdcd0ebbdcf3cb5d594716a8fe398259a56f (diff) | |
download | postgresql-d47e10bfde24d0aa2ba11e17b728495534cd44d7.tar.gz postgresql-d47e10bfde24d0aa2ba11e17b728495534cd44d7.zip |
Bring RelationGetRelationName into sync with new temp rel names.
Quick hack -- need to decide which header should include the other.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/utils/rel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/utils/rel.h b/src/include/utils/rel.h index f1574b3ffd5..b826ac0249d 100644 --- a/src/include/utils/rel.h +++ b/src/include/utils/rel.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: rel.h,v 1.46 2001/06/01 02:41:36 tgl Exp $ + * $Id: rel.h,v 1.47 2001/06/19 05:11:50 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -199,7 +199,7 @@ typedef Relation *RelationPtr; #define RelationGetRelationName(relation) \ (\ (strncmp(RelationGetPhysicalRelationName(relation), \ - "pg_temp.", 8) != 0) \ + "pg_temp", 7) != 0) \ ? \ RelationGetPhysicalRelationName(relation) \ : \ |