mirror of https://github.com/citusdata/citus.git
Fix checkstyle
parent
3517850441
commit
f25b4b294c
|
@ -1056,7 +1056,9 @@ class Postgres(QueryRunner):
|
||||||
def cleanup_databases(self):
|
def cleanup_databases(self):
|
||||||
for database in self.databases:
|
for database in self.databases:
|
||||||
self.sql(
|
self.sql(
|
||||||
sql.SQL("DROP DATABASE IF EXISTS {} WITH (FORCE)").format(sql.Identifier(database))
|
sql.SQL("DROP DATABASE IF EXISTS {} WITH (FORCE)").format(
|
||||||
|
sql.Identifier(database)
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
def cleanup_schemas(self):
|
def cleanup_schemas(self):
|
||||||
|
|
Loading…
Reference in New Issue