diff options
| author | Peter Eisentraut <peter_e@gmx.net> | 2002-05-18 13:48:01 +0000 |
|---|---|---|
| committer | Peter Eisentraut <peter_e@gmx.net> | 2002-05-18 13:48:01 +0000 |
| commit | e8ac187c68fdfcda800132d6c3c2e6d45aaf563f (patch) | |
| tree | b98c604540812213053399613979d5048f0d2916 /src/backend/catalog/pg_aggregate.c | |
| parent | 51fd22abdd9582e5b0edd545be93306a3edf0048 (diff) | |
| download | postgresql-e8ac187c68fdfcda800132d6c3c2e6d45aaf563f.tar.gz | |
Allow functions to be executed with the privileges of the function owner.
I took the opportunity to remove the pg_proc.proistrusted field.
Diffstat (limited to 'src/backend/catalog/pg_aggregate.c')
| -rw-r--r-- | src/backend/catalog/pg_aggregate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/catalog/pg_aggregate.c b/src/backend/catalog/pg_aggregate.c index 4c7dbba128..3e586f0b52 100644 --- a/src/backend/catalog/pg_aggregate.c +++ b/src/backend/catalog/pg_aggregate.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/catalog/pg_aggregate.c,v 1.45 2002/05/17 22:35:12 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/catalog/pg_aggregate.c,v 1.46 2002/05/18 13:47:59 petere Exp $ * *------------------------------------------------------------------------- */ @@ -139,7 +139,7 @@ AggregateCreate(const char *aggName, "aggregate_dummy", /* placeholder proc */ "-", /* probin */ true, /* isAgg */ - true, /* (obsolete "trusted") */ + false, /* security invoker (currently not definable for agg) */ false, /* isImplicit */ false, /* isStrict (not needed for agg) */ PROVOLATILE_IMMUTABLE, /* volatility (not needed for agg) */ |
