mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed an issue where quotes were missing in the CREATE script for the tablespace. #8408
This commit is contained in:
parent
41873de29e
commit
dd09986f71
@ -601,7 +601,7 @@ class TablespaceView(PGChildNodeView):
|
|||||||
if not old_data['name'].startswith('pg_'):
|
if not old_data['name'].startswith('pg_'):
|
||||||
SQL = render_template(
|
SQL = render_template(
|
||||||
"/".join([self.template_path, self._CREATE_SQL]),
|
"/".join([self.template_path, self._CREATE_SQL]),
|
||||||
data=old_data
|
data=old_data, conn=self.conn
|
||||||
)
|
)
|
||||||
SQL += "\n"
|
SQL += "\n"
|
||||||
SQL += render_template(
|
SQL += render_template(
|
||||||
|
Loading…
Reference in New Issue
Block a user