You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Possible solution is to stop using RETURNING row_to_json() in favour of RETURNING * and to scan result into the struct (adopt one of existing libraries for this job).
The text was updated successfully, but these errors were encountered:
Faced an error
function row_to_json(integer) does not exist
on loading fixture to the table, one column of which named the same as the table.Happens because under the hood Gonkey constructs following query:
Possible solution is to stop using
RETURNING row_to_json()
in favour ofRETURNING *
and to scan result into the struct (adopt one of existing libraries for this job).The text was updated successfully, but these errors were encountered: