diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-10-24 07:38:22 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-10-24 07:38:22 +0000 |
commit | 5d90a0037e8b7f7e573c3b700d46b269d8a874f3 (patch) | |
tree | 806d063bd2fab2103bbac1daef2f99a97207a54b /src/backend/utils/rel.h | |
parent | ee0ef186ac2830614bed1370b727b63982cfc547 (diff) |
Fixes: Errors when PQexec() in backend creates temp
relations and transaction is aborted
Submitted by: wieck@sapserv.debis.de (Jan Wieck)
Diffstat (limited to 'src/backend/utils/rel.h')
-rw-r--r-- | src/backend/utils/rel.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/utils/rel.h b/src/backend/utils/rel.h index d1d5a78dba7..7323bf16ef9 100644 --- a/src/backend/utils/rel.h +++ b/src/backend/utils/rel.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: rel.h,v 1.1.1.1 1996/07/09 06:22:02 scrappy Exp $ + * $Id: rel.h,v 1.1.1.1.2.1 1996/10/24 07:38:08 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -31,6 +31,8 @@ typedef struct RelationData { uint16 rd_refcnt; /* reference count */ bool rd_islocal; /* uses the local buffer mgr */ bool rd_isnailed; /* rel is nailed in cache */ + bool rd_istemp; /* rel is a temp rel */ + bool rd_tmpunlinked; /* temp rel already unlinked */ Form_pg_am rd_am; /* AM tuple */ Form_pg_class rd_rel; /* RELATION tuple */ Oid rd_id; /* relations's object id */ |