mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fix an issue where View RE-SQL is not quoting the column comments. #6280
This commit is contained in:
parent
db3d0c6e21
commit
fb3b2a4635
@ -45,4 +45,5 @@ Bug fixes
|
|||||||
| `Issue #6253 <https://github.com/pgadmin-org/pgadmin4/issues/6253>`_ - Fix an issue in the register server when setting the role, an arbitrary SQL query can be fired.
|
| `Issue #6253 <https://github.com/pgadmin-org/pgadmin4/issues/6253>`_ - Fix an issue in the register server when setting the role, an arbitrary SQL query can be fired.
|
||||||
| `Issue #6267 <https://github.com/pgadmin-org/pgadmin4/issues/6267>`_ - Ensure the user is able to log in if the specified OAUTH2_USERNAME_CLAIM is present in the OAuth2 profile.
|
| `Issue #6267 <https://github.com/pgadmin-org/pgadmin4/issues/6267>`_ - Ensure the user is able to log in if the specified OAUTH2_USERNAME_CLAIM is present in the OAuth2 profile.
|
||||||
| `Issue #6278 <https://github.com/pgadmin-org/pgadmin4/issues/6278>`_ - Use dependent instead of dependant in the message.
|
| `Issue #6278 <https://github.com/pgadmin-org/pgadmin4/issues/6278>`_ - Use dependent instead of dependant in the message.
|
||||||
|
| `Issue #6280 <https://github.com/pgadmin-org/pgadmin4/issues/6280>`_ - View SQL tab not quoting column comments.
|
||||||
| `Issue #6281 <https://github.com/pgadmin-org/pgadmin4/issues/6281>`_ - VarChar Field Sizes are missing from Query's Grid header.
|
| `Issue #6281 <https://github.com/pgadmin-org/pgadmin4/issues/6281>`_ - VarChar Field Sizes are missing from Query's Grid header.
|
||||||
|
@ -1361,7 +1361,8 @@ class ViewNode(PGChildNodeView, VacuumSettings, SchemaDiffObjectCompare):
|
|||||||
SQL = render_template("/".join(
|
SQL = render_template("/".join(
|
||||||
[self.column_template_path,
|
[self.column_template_path,
|
||||||
self._UPDATE_SQL.format(self.manager.version)]),
|
self._UPDATE_SQL.format(self.manager.version)]),
|
||||||
o_data=o_data, data=res, is_view_only=True)
|
o_data=o_data, data=res, is_view_only=True,
|
||||||
|
conn=self.conn)
|
||||||
sql_data += SQL
|
sql_data += SQL
|
||||||
|
|
||||||
# Get Column Grant SQL
|
# Get Column Grant SQL
|
||||||
|
Loading…
Reference in New Issue
Block a user