Fix the jsdoc for applyPagination

This commit is contained in:
Raymond Feng 2015-05-20 17:20:55 -07:00
parent 09fd0ea54f
commit d930972d3e
1 changed files with 1 additions and 3 deletions

View File

@ -1292,9 +1292,7 @@ SQLConnector.prototype.getPlaceholderForValue = function(key) {
* Build a new SQL statement with pagination support by wrapping the given sql * Build a new SQL statement with pagination support by wrapping the given sql
* @param {String} model The model name * @param {String} model The model name
* @param {ParameterizedSQL} stmt The sql statement * @param {ParameterizedSQL} stmt The sql statement
* @param {Number} limit The maximum number of records to be fetched * @param {Object} filter The filter object from the query
* @param {Number} offset The offset to start fetching records
* @param {String[]} order The sorting criteria
*/ */
SQLConnector.prototype.applyPagination = function(model, stmt, filter) { SQLConnector.prototype.applyPagination = function(model, stmt, filter) {
throw new Error('applyPagination() must be implemented by the connector'); throw new Error('applyPagination() must be implemented by the connector');