You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We had an internal database hang when running DROP EXTENSION IF EXISTS pglogical, after running the fix for #83. We were doing this to unblock a migration on an internal database -- alembic was connecting to the database using the role that owned all the tables in the schema. Still, alembic was having permission issues with the pglogical schema.
This database doesn't need belt or pglogical right now. We tried dropping the schema, but it said to drop the extension. We try dropping the extension, but it hangs.
To unblock their migration with their role, I had to run a GRANT USAGE ON SCHEMA pglogical TO <that_role>. That may have thrown an extra wrench in dropping the extension, but we should try and figure this bug out.
Relates to 2ndQuadrant/pglogical#211
We had an internal database hang when running
DROP EXTENSION IF EXISTS pglogical
, after running the fix for #83. We were doing this to unblock a migration on an internal database --alembic
was connecting to the database using the role that owned all the tables in the schema. Still, alembic was having permission issues with thepglogical
schema.This database doesn't need
belt
orpglogical
right now. We tried dropping the schema, but it said to drop the extension. We try dropping the extension, but it hangs.To unblock their migration with their role, I had to run a
GRANT USAGE ON SCHEMA pglogical TO <that_role>
. That may have thrown an extra wrench in dropping the extension, but we should try and figure this bug out.Might also be related to 2ndQuadrant/pglogical#361
The text was updated successfully, but these errors were encountered: