diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-04-01 03:34:27 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-04-01 03:34:27 +0000 |
| commit | 838fe25a9532ab2e9b9b7517fec94e804cf3da81 (patch) | |
| tree | 5d71f950bc362497a57e4a5a375907a41325aec4 /src/include/access/xact.h | |
| parent | 6df395f63a3f4be10b8f5b81dea1b426021ce5ce (diff) | |
| download | postgresql-838fe25a9532ab2e9b9b7517fec94e804cf3da81.tar.gz | |
Create a new GUC variable search_path to control the namespace search
path. The default behavior if no per-user schemas are created is that
all users share a 'public' namespace, thus providing behavior backwards
compatible with 7.2 and earlier releases. Probably the semantics and
default setting will need to be fine-tuned, but this is a start.
Diffstat (limited to 'src/include/access/xact.h')
| -rw-r--r-- | src/include/access/xact.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/include/access/xact.h b/src/include/access/xact.h index 796a053836..0cfc1652f2 100644 --- a/src/include/access/xact.h +++ b/src/include/access/xact.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: xact.h,v 1.41 2001/11/05 17:46:31 momjian Exp $ + * $Id: xact.h,v 1.42 2002/04/01 03:34:27 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -97,9 +97,7 @@ typedef struct xl_xact_abort * extern definitions * ---------------- */ -extern int TransactionFlushEnabled(void); -extern void SetTransactionFlushEnabled(bool state); - +extern bool IsTransactionState(void); extern bool IsAbortedTransactionBlockState(void); extern TransactionId GetCurrentTransactionId(void); extern CommandId GetCurrentCommandId(void); |
