Skip to content

Commit

Permalink
Merge branch 'master' of github.com:gajus/slonik
Browse files Browse the repository at this point in the history
  • Loading branch information
gajus committed Sep 19, 2019
2 parents 5fe157f + 3997681 commit eaf77da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/connectionMethods/query.js
Expand Up @@ -16,8 +16,8 @@ const query: InternalQueryFunctionType<*> = async (connectionLogger, connection,
rawSql,
values,
inheritedQueryId,
(finalConnection, finsalSql, finalValues) => {
return finalConnection.query(finsalSql, finalValues);
(finalConnection, finalSql, finalValues) => {
return finalConnection.query(finalSql, finalValues);
}
);
};
Expand Down

0 comments on commit eaf77da

Please sign in to comment.