compileLimit method

String compileLimit(
  1. int limit
)

Compile the "limit" portion of the query.

Implementation

String compileLimit(int limit) {
  return 'LIMIT $limit';
}