Skip to content

Commit dd09986

Browse files
Fixed an issue where quotes were missing in the CREATE script for the tablespace. #8408
1 parent 41873de commit dd09986

File tree

1 file changed

+1
-1
lines changed
  • web/pgadmin/browser/server_groups/servers/tablespaces

1 file changed

+1
-1
lines changed

web/pgadmin/browser/server_groups/servers/tablespaces/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ def sql(self, gid, sid, tsid):
601601
if not old_data['name'].startswith('pg_'):
602602
SQL = render_template(
603603
"/".join([self.template_path, self._CREATE_SQL]),
604-
data=old_data
604+
data=old_data, conn=self.conn
605605
)
606606
SQL += "\n"
607607
SQL += render_template(

0 commit comments

Comments
 (0)