Don't sort a data view on dump when the data view is already sorted

This commit is contained in:
Eric Lippmann 2016-02-23 11:59:23 +01:00
parent bb8478a219
commit 7f358ed88d
1 changed files with 3 additions and 1 deletions

View File

@ -95,7 +95,9 @@ abstract class DataView implements QueryInterface, SortRules, FilterColumns, Ite
public function dump()
{
$this->order();
if (! $this->isSorted) {
$this->order();
}
return $this->query->dump();
}