CREATE EXTENSION not adding extension on second SCHEMA

Поиск
Список
Период
Сортировка
От PG Doc comments form
Тема CREATE EXTENSION not adding extension on second SCHEMA
Дата
Msg-id 165400680669.573549.5553646427767597793@wrigleys.postgresql.org
обсуждение исходный текст
Ответы Re: CREATE EXTENSION not adding extension on second SCHEMA  (jian he <jian.universality@gmail.com>)
Re: CREATE EXTENSION not adding extension on second SCHEMA  ("David G. Johnston" <david.g.johnston@gmail.com>)
Список pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/14/sql-createextension.html
Description:

I'm trying to add an extension to two schemas that I have in my DB.

steps:

1)

CREATE EXTENSION unaccent with SCHEMA public;

response: OK.

2) 

CREATE EXTENSION unaccent with SCHEMA public_test;

response: SQL Error [42710]: ERROR: extension "unaccent" already exists

I tryed:

SET search_path = public_test;
CREATE EXTENSION unaccent;

 and the response is: response: SQL Error [42710]: ERROR: extension
"unaccent" already exists

В списке pgsql-docs по дате отправления:

Предыдущее
От: "Daniel Westermann (DWE)"
Дата:
Сообщение: Re: Should we really recommend "-A md5 or -A password"?
Следующее
От: "Daniel Westermann (DWE)"
Дата:
Сообщение: Can we still dump version 7?