Re: BUG #16698: Create extension and search path

From: Heikki Linnakangas <hlinnaka(at)iki(dot)fi>
To: miha(dot)vrhovnik(at)gmail(dot)com, pgsql-bugs(at)lists(dot)postgresql(dot)org, PG Bug reporting form <noreply(at)postgresql(dot)org>
Subject: Re: BUG #16698: Create extension and search path
Date: 2020-11-03 12:18:47
Message-ID: b2e2d2a5-caa2-7141-dee1-ba7cfcb74fd8@iki.fi
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

On 03/11/2020 09:57, PG Bug reporting form wrote:
> The following bug has been logged on the website:
>
> Bug reference: 16698
> Logged by: Miha Vrhovnik
> Email address: miha(dot)vrhovnik(at)gmail(dot)com
> PostgreSQL version: 13.0
> Operating system: Linux
> Description:
>
> The documentation states, that I can use search_path to define in which
> schema the extension is going to be created, but this is clearly not
> true..

To be precise, the documentation for CREATE EXTENSION
(https://www.postgresql.org/docs/current/sql-createextension.html) says:

> schema_name
>
> The name of the schema in which to install the extension's objects,
> given that the extension allows its contents to be relocated. The
> named schema must already exist. If not specified, and the
> extension's control file does not specify a schema either, the
> current default object creation schema is used.
>
> If the extension specifies a schema parameter in its control file,
> then that schema cannot be overridden with a SCHEMA clause. Normally,
> an error will be raised if a SCHEMA clause is given and it conflicts
> with the extension's schema parameter. However, if the CASCADE clause
> is also given, then schema_name is ignored when it conflicts. The
> given schema_name will be used for installation of any needed
> extensions that do not specify schema in their control files.
>
> Remember that the extension itself is not considered to be within any
> schema: extensions have unqualified names that must be unique
> database-wide. But objects belonging to the extension can be within
> schemas.
The first paragraph says "schema in which to install the extension's
*objects*" (emphasis mine). And the last paragraph explains this more
explicitly.

- Heikki

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message luis.roberto 2020-11-03 12:37:33 Re: segfault with incremental sort
Previous Message Max Vikharev 2020-11-03 11:14:32 Re: BUG #16691: Autovacuum stops processing certain databases until postgresql rebooted