Open bryanhughes opened 5 years ago
Accidentally set a map with a field value of {ok, 12345} instead of 12345. Calling pgo:query/2 with the param list returns only {error, badarg}, which is correct but challenging to debug.
{ok, 12345}
12345
pgo:query/2
{error, badarg}
I think this is much better now and this issue may be able to be closed.
Accidentally set a map with a field value of
{ok, 12345}
instead of12345
. Callingpgo:query/2
with the param list returns only{error, badarg}
, which is correct but challenging to debug.