Elastic: Report number of rows

This commit is contained in:
Jakub Vrana 2013-08-08 16:02:23 -07:00
parent e411291537
commit 9fdcff3c1c

View file

@ -62,9 +62,10 @@ if (isset($_GET["elastic"])) {
} }
class Min_Result { class Min_Result {
var $_rows; var $num_rows, $_rows;
function Min_Result($rows) { function Min_Result($rows) {
$this->num_rows = count($this->_rows);
$this->_rows = $rows; $this->_rows = $rows;
reset($this->_rows); reset($this->_rows);
} }