mingfang commented on issue #1626:
URL: https://github.com/apache/age/issues/1626#issuecomment-2021247857

   I confirm that dropping the extension does not drop the ag_catalog schema.
   Whatever that is causing this problem is actually causing a much bigger 
problem for my entire Postgres instance.
   After the AGE was used once, it seems to leave a permanent dependency 
somewhere that's causing me to unable to delete any schemas.
   
   The steps to recreate the problem in psql
   ```sql
   create extension age;
   drop extension age;
   create database test;
   \c test
   drop schema public;
   ```
   The `drop schema public` statement will fail with
   ```
   ERROR:  schema "ag_catalog" does not exist
   ```
   


-- 
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: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to