]> granicus.if.org Git - postgresql/commit
Make CREATE EXTENSION check schema creation permissions.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 24 Aug 2011 01:49:07 +0000 (21:49 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 24 Aug 2011 01:49:07 +0000 (21:49 -0400)
commitd4aa491493e6cfa7542d16deba4018c2fd7af9fd
tree6e3cb44a1c6dbe7df4f89d523feeb5fe783342ee
parent43f0c20839aa82705700e4de5bb452b7f044c838
Make CREATE EXTENSION check schema creation permissions.

When creating a new schema for a non-relocatable extension, we neglected
to check whether the calling user has permission to create schemas.
That didn't matter in the original coding, since we had already checked
superuserness, but in the new dispensation where users need not be
superusers, we should check it.  Use CreateSchemaCommand() rather than
calling NamespaceCreate() directly, so that we also enforce the rules
about reserved schema names.

Per complaint from KaiGai Kohei, though this isn't the same as his patch.
src/backend/commands/extension.c