We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pg_stat_statements
Describe the bug PgBelt fails to drop the pglogical role when running belt teardown --full with the following error:
belt teardown --full
ERROR: role "pglogical" cannot be dropped because some objects depend on it DETAIL: privileges for view pg_stat_statements
Expected behavior The teardown command runs without errors and doesn't stop in the middle.
Additional context This happened with a Postgres 12 RDS database.
The text was updated successfully, but these errors were encountered:
Solution - just gotta run an extra REVOKE to get rid of the blocker:
REVOKE ALL ON pg_stat_statements FROM pglogical;
Sorry, something went wrong.
vjeeva
No branches or pull requests
Describe the bug
PgBelt fails to drop the pglogical role when running
belt teardown --full
with the following error:Expected behavior
The teardown command runs without errors and doesn't stop in the middle.
Additional context
This happened with a Postgres 12 RDS database.
The text was updated successfully, but these errors were encountered: