Corrected DROP SQL syntax for catalog. Fixes #5713

This commit is contained in:
Nikhil Mohite  2020-08-07 16:57:50 +05:30 committed by Akshay Joshi
parent 23a12efd29
commit 9ad7476a34
2 changed files with 2 additions and 1 deletions

View File

@ -34,5 +34,6 @@ Bug fixes
| `Issue #5689 <https://redmine.postgresql.org/issues/5689>`_ - Added the 'ORDER BY' clause for the privileges type to fix schema diff issue.
| `Issue #5708 <https://redmine.postgresql.org/issues/5708>`_ - Correct TLS certificate filename in the container deployment docs.
| `Issue #5710 <https://redmine.postgresql.org/issues/5710>`_ - Fixed an issue when comparing the table with a trigger throwing error in schema diff.
| `Issue #5713 <https://redmine.postgresql.org/issues/5713>`_ - Corrected DROP SQL syntax for catalog.
| `Issue #5716 <https://redmine.postgresql.org/issues/5716>`_ - Fixed an issue where ajax call continues to fire even after disconnect the database server.
| `Issue #5724 <https://redmine.postgresql.org/issues/5724>`_ - Clarify some of the differences when running in server mode in the docs.

View File

@ -1053,7 +1053,7 @@ It may have been removed by another user.
sql_header = u"""
-- CATALOG: {0}
-- DROP SCHEMA {0};(
-- DROP SCHEMA {0};
""".format(old_data['name'])