diff options
| author | Itagaki Takahiro <itagaki.takahiro@gmail.com> | 2009-12-11 03:34:57 +0000 |
|---|---|---|
| committer | Itagaki Takahiro <itagaki.takahiro@gmail.com> | 2009-12-11 03:34:57 +0000 |
| commit | f1325ce213ae1843d2ee636ff6780c3f8ac9ada6 (patch) | |
| tree | 2fab9db3d075fcca27a87e92a9be02263865b93a /src/include/libpq/be-fsstubs.h | |
| parent | 64579962bbe522bf9ced8e4ed712b9072fb89142 (diff) | |
| download | postgresql-f1325ce213ae1843d2ee636ff6780c3f8ac9ada6.tar.gz | |
Add large object access control.
A new system catalog pg_largeobject_metadata manages
ownership and access privileges of large objects.
KaiGai Kohei, reviewed by Jaime Casanova.
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 ff5e555824..ebdcc0e863 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... |
