Fixed an issue where quotes were missing in the CREATE script for the tablespace. #8408

This commit is contained in:
Pravesh Sharma
2025-02-03 11:50:50 +05:30
committed by GitHub
parent 41873de29e
commit dd09986f71

View File

@@ -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(