diff options
Diffstat (limited to 'src/include/libpq/be-fsstubs.h')
-rw-r--r-- | src/include/libpq/be-fsstubs.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/include/libpq/be-fsstubs.h b/src/include/libpq/be-fsstubs.h index ff5e555824a..ebdcc0e8639 100644 --- a/src/include/libpq/be-fsstubs.h +++ b/src/include/libpq/be-fsstubs.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/libpq/be-fsstubs.h,v 1.32 2009/01/01 17:23:59 momjian Exp $ + * $PostgreSQL: pgsql/src/include/libpq/be-fsstubs.h,v 1.33 2009/12/11 03:34:56 itagaki Exp $ * *------------------------------------------------------------------------- */ @@ -38,6 +38,11 @@ extern Datum lo_unlink(PG_FUNCTION_ARGS); extern Datum lo_truncate(PG_FUNCTION_ARGS); /* + * compatibility option for access control + */ +extern bool lo_compat_privileges; + +/* * These are not fmgr-callable, but are available to C code. * Probably these should have had the underscore-free names, * but too late now... |