Fixed an issue where quotes were missing in the CREATE script for the tablespace. #8408
parent
41873de29e
commit
dd09986f71
|
|
@ -601,7 +601,7 @@ class TablespaceView(PGChildNodeView):
|
|||
if not old_data['name'].startswith('pg_'):
|
||||
SQL = render_template(
|
||||
"/".join([self.template_path, self._CREATE_SQL]),
|
||||
data=old_data
|
||||
data=old_data, conn=self.conn
|
||||
)
|
||||
SQL += "\n"
|
||||
SQL += render_template(
|
||||
|
|
|
|||
Loading…
Reference in New Issue