mirror of
https://github.com/postgres/postgres.git
synced 2026-06-01 05:18:58 -04:00
24 lines
626 B
C
24 lines
626 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* temprel.h
|
|
* Temporary relation functions
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: temprel.h,v 1.4 1999/07/15 15:21:43 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef TEMPREL_H
|
|
#define TEMPREL_H
|
|
|
|
#include "access/htup.h"
|
|
|
|
void create_temp_relation(char *relname, HeapTuple pg_class_tuple);
|
|
void remove_all_temp_relations(void);
|
|
void remove_temp_relation(Oid relid);
|
|
HeapTuple get_temp_rel_by_name(char *user_relname);
|
|
|
|
#endif /* TEMPREL_H */
|