不要怂,就是干,撸起袖子干!

Commit 489ea1b6 by Mick Hansen

restore 'unused methods' since they are used in tests

1 parent f5d14b1a
Showing with 5 additions and 1 deletions
...@@ -1090,7 +1090,11 @@ module.exports = (function() { ...@@ -1090,7 +1090,11 @@ module.exports = (function() {
if (options.keysEscaped) { if (options.keysEscaped) {
_key = key _key = key
} else { } else {
_key = this.quoteIdentifiers(key) if(this.isAssociationFilter(key, dao, options)){
_key = key = this.getAssociationFilterColumn(key, dao, options);
} else {
_key = this.quoteIdentifiers(key)
}
} }
if (Array.isArray(value)) { if (Array.isArray(value)) {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!