jriouovh opened a new issue, #1626:
URL: https://github.com/apache/age/issues/1626
**Describe the bug**
When the extension is uninstalled, the `ag_catalog` schema remains.
**How are you accessing AGE (Command line, driver, etc.)?**
Command line.
**What data setup do we need to do?**
```pgsql
create extension age;
```
**What is the necessary configuration info needed?**
Default installation.
**What is the command that caused the error?**
```
test=# drop extension age;
DROP EXTENSION
test=# \dn ag_catalog
List of schemas
Name | Owner
------------+----------
ag_catalog | postgres
(1 row)
```
**Expected behavior**
The `ag_catalog` schema should be removed by the drop extension command
directly instead of manually run drop schema:
```
test=# drop schema ag_catalog;
DROP SCHEMA
test=# \dn ag_catalog
List of schemas
Name | Owner
------+-------
(0 rows)
```
**Environment (please complete the following information):**
- Version: 1.5.0
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]