aboutsummaryrefslogtreecommitdiffstats
path: root/src/mysqlerl_connection.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/mysqlerl_connection.erl')
-rw-r--r--src/mysqlerl_connection.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mysqlerl_connection.erl b/src/mysqlerl_connection.erl
index fb0479c..53ac85f 100644
--- a/src/mysqlerl_connection.erl
+++ b/src/mysqlerl_connection.erl
@@ -76,7 +76,7 @@ handle_query(Ref, Query) ->
make_request(Ref, Req) ->
port_command(Ref, term_to_binary(Req)),
receive
- {Ref, {data, Res}} -> {ok, Res};
+ {Ref, {data, Res}} -> binary_to_term(Res);
Other ->
error_logger:warning_msg("Got unknown query response: ~p~n",
[Other]),