Skip to content

Commit 1a5143f

Browse files
committed
Merge pull request dresende#205 from fastfish/master
Fixes wrong import
2 parents 27dcf55 + 1468c8e commit 1a5143f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/AggregateFunctions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ function AggregateFunctions(opts) {
100100
}
101101

102102
if (opts.driver.opts && opts.driver.opts.debug) {
103-
require(".Debug").sql(opts.driver_name, query.build());
103+
require("./Debug").sql(opts.driver_name, query.build());
104104
}
105105

106106
opts.driver.execQuery(query.build(), function (err, data) {

0 commit comments

Comments
 (0)