| 1 | <?php |
||
| 7 | class MySQLSelectQuery extends SelectQuery |
||
| 8 | { |
||
| 9 | const CALC_FOUND_ROWS = "SQL_CALC_FOUND_ROWS"; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * Applies the SQL_CALC_FOUND_ROWS flag to the query. |
||
| 13 | * |
||
| 14 | * @link http://dev.mysql.com/doc/refman/5.7/en/information-functions.html#function_found-rows |
||
| 15 | * |
||
| 16 | * @return $this |
||
| 17 | */ |
||
| 18 | 1 | public function calcFoundRows() |
|
| 24 | } |
||
| 25 |