aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/mysqlerl.erl6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mysqlerl.erl b/src/mysqlerl.erl
index 113efee..9b835cf 100644
--- a/src/mysqlerl.erl
+++ b/src/mysqlerl.erl
@@ -8,7 +8,7 @@
-export([convert_type/1]).
--export([test_start/0, test_msg/0]).
+-export([test_start/0, test_msg/0, test_query/0]).
-export([start/0, start/1, stop/0, commit/2, commit/3,
connect/6, disconnect/1, describe_table/2,
@@ -28,6 +28,10 @@ test_msg() ->
commit(mysqlerl_connection_sup:random_child(),
rollback, 2000).
+test_query() ->
+ sql_query(mysqlerl_connection_sup:random_child(),
+ "SELECT COUNT(*) FROM user", 2000).
+
start() ->
start(temporary).