Merge branch 'master' of github.com:1602/jugglingdb

This commit is contained in:
Anatoliy Chakkaev 2012-09-04 17:24:18 +04:00
commit 5a65b4f1c2
1 changed files with 1 additions and 1 deletions

View File

@ -261,7 +261,7 @@ PG.prototype.toFilter = function (model, filter) {
} }
if (filter.limit) { if (filter.limit) {
out += ' LIMIT ' + filter.limit + ' ' + (filter.offset || ''); out += ' LIMIT ' + filter.limit + ' OFFSET ' + (filter.offset || '');
} }
return out; return out;