Fix the jsdoc for applyPagination
This commit is contained in:
parent
09fd0ea54f
commit
d930972d3e
|
@ -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');
|
||||||
|
|
Loading…
Reference in New Issue