$examined
$examined : int
What one reconciliation pass found.
The number to read is drifted. Zero means every table that changed since the last pass had an
operation recorded for it, which is the only evidence that capture is complete. Anything above
zero names the tables the history has a gap for.
__construct(int $examined = 0, int $changed = 0, int $drifted = 0, int $captured = 0, array$drift = [], list $problems = [], float $seconds = 0.0, bool $complete = true) : mixed
Constructs a report.
| int | $examined | Tables whose watermark was read. |
| int | $changed | Tables whose watermark moved. |
| int | $drifted | Tables that moved with no captured operation to account for it. |
| int | $captured | Rows the pass captured to close a gap. |
| array |
$drift | Table name keyed to what moved, for the tables that drifted. |
| list |
$problems | One line per table that could not be read. |
| float | $seconds | How long the pass took. |
| bool | $complete | FALSE when the pass stopped at a limit rather than covering every captured table. |