Use dict based data instead of 2d-array in Type module as we are adding keys on the fly.
Reviewed By: Harshal DhumalREL-1_X
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