CREATE EXTENSION not adding extension on second SCHEMA - Mailing list pgsql-docs

From PG Doc comments form
Subject CREATE EXTENSION not adding extension on second SCHEMA
Date
Msg-id 165400680669.573549.5553646427767597793@wrigleys.postgresql.org
Whole thread Raw
Responses 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>)
List 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 by date:

Previous
From: "Daniel Westermann (DWE)"
Date:
Subject: Re: Should we really recommend "-A md5 or -A password"?
Next
From: "Daniel Westermann (DWE)"
Date:
Subject: Can we still dump version 7?