mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-22 08:46:39 -06:00
Cover more scenarios for the pgAdmin freezing issue. Fixes #5427
This commit is contained in:
parent
1ed4d0f95e
commit
eb8168285e
@ -29,6 +29,7 @@ from pgadmin.browser.server_groups.servers.databases.schemas.tables.\
|
||||
columns import utils as column_utils
|
||||
from pgadmin.browser.server_groups.servers.databases.schemas.tables.\
|
||||
constraints.exclusion_constraint import utils as exclusion_utils
|
||||
from pgadmin.utils.exception import ExecuteError
|
||||
|
||||
|
||||
class TableModule(SchemaChildModule):
|
||||
@ -1024,6 +1025,11 @@ class TableView(BaseTableView, DataTypeReader, SchemaDiffTableCompare):
|
||||
if not status:
|
||||
return res
|
||||
|
||||
lock_on_table = self.get_table_locks(did, res['rows'][0])
|
||||
if lock_on_table != '':
|
||||
return ExecuteError(
|
||||
error_msg=str(lock_on_table.json['info']))
|
||||
|
||||
return super(TableView, self).update(
|
||||
gid, sid, did, scid, tid, data=data, res=res)
|
||||
except Exception as e:
|
||||
|
Loading…
Reference in New Issue
Block a user