Skip to content

Commit

Permalink
Merge branch 'master' of github.com:1602/jugglingdb
Browse files Browse the repository at this point in the history
  • Loading branch information
1602 committed Sep 4, 2012
2 parents 2aede39 + 562d06b commit 5a65b4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/adapters/postgres.js
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ PG.prototype.toFilter = function (model, filter) {
}

if (filter.limit) {
out += ' LIMIT ' + filter.limit + ' ' + (filter.offset || '');
out += ' LIMIT ' + filter.limit + ' OFFSET ' + (filter.offset || '');
}

return out;
Expand Down

0 comments on commit 5a65b4f

Please sign in to comment.