diff options
Diffstat (limited to 'src/include/utils/temprel.h')
-rw-r--r-- | src/include/utils/temprel.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/include/utils/temprel.h b/src/include/utils/temprel.h index b185e3372e9..f503850e4e4 100644 --- a/src/include/utils/temprel.h +++ b/src/include/utils/temprel.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: temprel.h,v 1.16 2001/06/18 16:13:21 momjian Exp $ + * $Id: temprel.h,v 1.17 2001/06/19 12:03:41 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -16,11 +16,6 @@ #include "access/htup.h" -#define PG_TEMP_REL_PREFIX "pg_temp" - -#define is_temp_relname(relname) \ - (strncmp(relname, PG_TEMP_REL_PREFIX, strlen(PG_TEMP_REL_PREFIX)) == 0) - extern void create_temp_relation(const char *relname, HeapTuple pg_class_tuple); extern void remove_temp_rel_by_relid(Oid relid); |