diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-08-26 03:08:15 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-08-26 03:08:15 +0000 |
| commit | f26b91761bd25f9da2f97d818f60ae68588888c2 (patch) | |
| tree | 54af9e5352ecbc5627914a58fd19744e41fb8e06 /src/backend/bootstrap/bootparse.y | |
| parent | 09a6c909458b44c51d0c8a8b58ae2590c7815b9f (diff) | |
| download | postgresql-f26b91761bd25f9da2f97d818f60ae68588888c2.tar.gz | |
Arrange for indexes and toast tables to inherit their ownership from
the parent table, even if the command that creates them is executed by
someone else (such as a superuser or a member of the owning role).
Per gripe from Michael Fuhr.
Diffstat (limited to 'src/backend/bootstrap/bootparse.y')
| -rw-r--r-- | src/backend/bootstrap/bootparse.y | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/bootstrap/bootparse.y b/src/backend/bootstrap/bootparse.y index fc42ba83af..a3b2285ef5 100644 --- a/src/backend/bootstrap/bootparse.y +++ b/src/backend/bootstrap/bootparse.y @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/bootstrap/bootparse.y,v 1.77 2005/06/29 22:51:54 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/bootstrap/bootparse.y,v 1.78 2005/08/26 03:07:00 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -29,6 +29,7 @@ #include "catalog/heap.h" #include "catalog/pg_am.h" #include "catalog/pg_attribute.h" +#include "catalog/pg_authid.h" #include "catalog/pg_class.h" #include "catalog/pg_namespace.h" #include "catalog/pg_tablespace.h" @@ -199,6 +200,7 @@ Boot_CreateStmt: PG_CATALOG_NAMESPACE, $3 ? GLOBALTABLESPACE_OID : 0, $6, + BOOTSTRAP_SUPERUSERID, tupdesc, RELKIND_RELATION, $3, |
