mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
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:
parent
96e7914f23
commit
404366909e
@ -136,9 +136,4 @@ class MySQLStatement extends Query
|
||||
}
|
||||
return $row;
|
||||
}
|
||||
|
||||
public function rewind()
|
||||
{
|
||||
$this->seek(0);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user