diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2002-02-18 23:11:58 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2002-02-18 23:11:58 +0000 |
commit | 8adf56f77aa0cc8cf4af7a19f0d235fc56fbabc7 (patch) | |
tree | cab3054a1a1fba1fe1722bb75a1fc3c06eda964d /src/include/utils/fcache.h | |
parent | 5e035031265aef8608fd32a31897240a3aff3d8d (diff) | |
download | postgresql-8adf56f77aa0cc8cf4af7a19f0d235fc56fbabc7.tar.gz postgresql-8adf56f77aa0cc8cf4af7a19f0d235fc56fbabc7.zip |
Privileges on functions and procedural languages
Diffstat (limited to 'src/include/utils/fcache.h')
-rw-r--r-- | src/include/utils/fcache.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/utils/fcache.h b/src/include/utils/fcache.h index 563812c8717..fdc84c2122f 100644 --- a/src/include/utils/fcache.h +++ b/src/include/utils/fcache.h @@ -11,7 +11,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: fcache.h,v 1.20 2001/11/05 17:46:36 momjian Exp $ + * $Id: fcache.h,v 1.21 2002/02/18 23:11:46 petere Exp $ * *------------------------------------------------------------------------- */ @@ -41,6 +41,8 @@ typedef struct FunctionCache */ FmgrInfo func; + bool permission_ok; + /* * setArgsValid is true when we are evaluating a set-valued function * and we are in the middle of a call series; we want to pass the same |