mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2026-09-03 20:52:57 -05:00
Fix deletion of table rows with the column definition having NOT NULL TRUE and HAS NO DEFAULT VALUE. Fixes #2527
This commit is contained in:
committed by
Dave Page
parent
2d5e55964a
commit
f6b879233c
@@ -464,6 +464,7 @@ class TableCommand(GridCommand):
|
|||||||
continue
|
continue
|
||||||
|
|
||||||
column_type = {}
|
column_type = {}
|
||||||
|
column_data = {}
|
||||||
for each_col in columns_info:
|
for each_col in columns_info:
|
||||||
if (
|
if (
|
||||||
columns_info[each_col]['not_null'] and
|
columns_info[each_col]['not_null'] and
|
||||||
|
|||||||
Reference in New Issue
Block a user