Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(dbmanager): use correct SQL to drop databases (#3640)
Previously the code used: ``` DROP DATABASE mydb IF EXISTS WITH (FORCE) ``` which is not standard SQL and does not work with PostgreSQL. This patch fixes to code to issue: ``` DROP DATABASE IF EXISTS mydb WITH (FORCE) ```
- Loading branch information