We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31bd221 commit d9b80b9Copy full SHA for d9b80b9
src/Database/Table/SqlBuilder.php
@@ -155,9 +155,7 @@ public function buildSelectQuery($columns = NULL)
155
$queryJoins = $this->buildQueryJoins($joins);
156
$query = "{$querySelect} FROM {$this->delimitedTable}{$queryJoins}{$queryCondition}{$queryEnd}";
157
158
- if ($this->limit !== NULL || $this->offset) {
159
- $this->driver->applyLimit($query, $this->limit, $this->offset);
160
- }
+ $this->driver->applyLimit($query, $this->limit, $this->offset);
161
162
return $this->tryDelimite($query);
163
}
0 commit comments