Skip to content

Commit 3c3208a

Browse files
committed
Fix for issue 750: brianc#750
1 parent b3f0687 commit 3c3208a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/query.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var Query = function(config, values, callback) {
1111
config = utils.normalizeQueryConfig(config, values, callback);
1212

1313
this.text = config.text;
14-
this.values = config.values;
14+
this.values = config.values.slice();
1515
this.rows = config.rows;
1616
this.types = config.types;
1717
this.name = config.name;

0 commit comments

Comments
 (0)