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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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