Set the LIMIT value to the query Limits the number of results returned.
(self, n: int)
| 86 | return self |
| 87 | |
| 88 | def limit(self, n: int) -> 'QueryBuilder': |
| 89 | ''' |
| 90 | Set the LIMIT value to the query |
| 91 | Limits the number of results returned. |
| 92 | ''' |
| 93 | self._limit = n |
| 94 | return self |
| 95 | |
| 96 | def build(self) -> str: |
| 97 | ''' |
no outgoing calls
no test coverage detected