FIX: Fix MysqlStatement::rewind()

Its implementation is more naive than Query’s and leads to unnecessary
seek()ing. This causes issues with the previous commit.
This commit is contained in:
Sam Minnee 2019-07-01 10:18:33 +12:00
parent 96e7914f23
commit 404366909e

View File

@ -136,9 +136,4 @@ class MySQLStatement extends Query
}
return $row;
}
public function rewind()
{
$this->seek(0);
}
}