|
7 | 7 | * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
8 | 8 | * Portions Copyright (c) 1994, Regents of the University of California
|
9 | 9 | *
|
10 |
| - * $Id: rel.h,v 1.46 2001/06/01 02:41:36 tgl Exp $ |
| 10 | + * $Id: rel.h,v 1.47 2001/06/19 05:11:50 tgl Exp $ |
11 | 11 | *
|
12 | 12 | *-------------------------------------------------------------------------
|
13 | 13 | */
|
@@ -199,7 +199,7 @@ typedef Relation *RelationPtr;
|
199 | 199 | #defineRelationGetRelationName(relation) \
|
200 | 200 | (\
|
201 | 201 | (strncmp(RelationGetPhysicalRelationName(relation), \
|
202 |
| - "pg_temp.",8) != 0) \ |
| 202 | + "pg_temp",7) != 0) \ |
203 | 203 | ? \
|
204 | 204 | RelationGetPhysicalRelationName(relation) \
|
205 | 205 | : \
|
|