@@ -165,17 +165,17 @@ |
||
165 | 165 | |
166 | 166 | if ($this->db->getDriverType() === 'pgsql') { |
167 | 167 | if ($this->limit !== -1) { |
168 | - $query .= ' LIMIT ' . $this->limit . ' '; |
|
168 | + $query .= ' LIMIT '.$this->limit.' '; |
|
169 | 169 | } |
170 | 170 | if ($this->offset !== -1) { |
171 | - $query .= ' OFFSET ' . $this->offset . ' '; |
|
171 | + $query .= ' OFFSET '.$this->offset.' '; |
|
172 | 172 | } |
173 | 173 | } else { |
174 | 174 | if ($this->limit !== -1) { |
175 | 175 | $query .= ' LIMIT '; |
176 | 176 | |
177 | 177 | if ($this->offset !== -1) { |
178 | - $query .= $this->offset . ','; |
|
178 | + $query .= $this->offset.','; |
|
179 | 179 | } |
180 | 180 | |
181 | 181 | $query .= $this->limit; |