mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Use dict based data instead of 2d-array in Type module as we are adding keys on the fly.
Reviewed By: Harshal Dhumal
This commit is contained in:
parent
deb5475b98
commit
2c6c4a16ce
@ -403,7 +403,7 @@ class TypeView(PGChildNodeView, DataTypeReader):
|
||||
'additional_properties.sql']),
|
||||
type='c',
|
||||
typrelid=copy_dict['typrelid'])
|
||||
status, rset = self.conn.execute_2darray(SQL)
|
||||
status, rset = self.conn.execute_dict(SQL)
|
||||
if not status:
|
||||
return internal_server_error(errormsg=res)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user