Fixed an issue where table properties were not updating from properties dialog. #7210

pull/7322/head
Pravesh Sharma 2024-03-27 11:41:01 +05:30 committed by GitHub
parent 089f890f2e
commit b742487dc3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -2054,7 +2054,8 @@ class BaseTableView(PGChildNodeView, BasePartitionTable, VacuumSettings):
_, lock_table_result = self.conn.execute_dict(sql)
for row in lock_table_result['rows']:
if row['relation'].strip('\"') == data['name']:
if row['relation'] and \
row['relation'].strip('\"') == data['name']:
sql = render_template(
"/".join([self.table_template_path,