summaryrefslogtreecommitdiff
path: root/src/include/utils/temprel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/utils/temprel.h')
-rw-r--r--src/include/utils/temprel.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/include/utils/temprel.h b/src/include/utils/temprel.h
deleted file mode 100644
index a8a6a00568d..00000000000
--- a/src/include/utils/temprel.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*-------------------------------------------------------------------------
- *
- * temprel.h
- * Temporary relation functions
- *
- *
- * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
- * Portions Copyright (c) 1994, Regents of the University of California
- *
- * $Id: temprel.h,v 1.20 2001/11/05 17:46:36 momjian Exp $
- *
- *-------------------------------------------------------------------------
- */
-#ifndef TEMPREL_H
-#define TEMPREL_H
-
-#include "access/htup.h"
-
-extern void create_temp_relation(const char *relname,
- HeapTuple pg_class_tuple);
-extern void remove_temp_rel_by_relid(Oid relid);
-extern bool rename_temp_relation(const char *oldname,
- const char *newname);
-
-extern void remove_all_temp_relations(void);
-extern void AtEOXact_temp_relations(bool isCommit);
-
-extern char *get_temp_rel_by_username(const char *user_relname);
-extern char *get_temp_rel_by_physicalname(const char *relname);
-
-#define is_temp_rel_name(relname) (get_temp_rel_by_username(relname) != NULL)
-
-#endif /* TEMPREL_H */