From 27d48cd9d1af158215eb7a2071c88c34d490a2c1 Mon Sep 17 00:00:00 2001 From: koooge Date: Wed, 21 Aug 2019 13:58:38 +0900 Subject: [PATCH] fix: mysql usage in manual mode Signed-off-by: koooge --- packages/mysql/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/mysql/README.md b/packages/mysql/README.md index ce1e9801..48dfdba8 100644 --- a/packages/mysql/README.md +++ b/packages/mysql/README.md @@ -59,7 +59,7 @@ Manual mode requires that you pass around the segment reference. See the example connection.query('SELECT * FROM cats', function(err, rows) { //Automatically captures query information and errors (if any) - }); + }, segment); ...