Fix parameterize bug

This commit is contained in:
Diogo Doreto 2015-10-17 23:42:46 -03:00
parent 6ff67b6bfc
commit f05443036e
1 changed files with 10 additions and 1 deletions

View File

@ -989,6 +989,8 @@ SQLConnector.prototype.buildColumnNames = function(model, filter) {
* @returns {ParameterizedSQL} Statement object {sql: ..., params: [...]}
*/
SQLConnector.prototype.buildSelect = function(model, filter, options) {
options = options || {};
if (!filter.order) {
var idNames = this.idNames(model);
if (idNames && idNames.length) {
@ -1037,6 +1039,11 @@ SQLConnector.prototype.buildSelect = function(model, filter, options) {
}
}
if (options.skipParameterize === true) {
return selectStmt;
}
return this.parameterize(selectStmt);
};
@ -1062,7 +1069,9 @@ SQLConnector.prototype.buildJoins = function(model, where) {
var condition = this.columnEscaped(model, keyFrom) + '=' +
this.columnEscaped(modelTo, keyTo);
var innerSelect = this.buildSelect(modelTo, innerWhere);
var innerSelect = this.buildSelect(modelTo, innerWhere, {
skipParameterize: true
});
stmt
.merge('INNER JOIN (')