6 lines
367 B
MySQL
6 lines
367 B
MySQL
|
|
-- A bounded snapshot scan rotates past retained failures without acknowledging
|
||
|
|
-- them. Persist before processing so a slow/poison page cannot monopolize polling.
|
||
|
|
ALTER TABLE computer_file_poll_scopes
|
||
|
|
ADD COLUMN scan_after BIGINT NOT NULL DEFAULT 0 CHECK(scan_after >= 0),
|
||
|
|
ADD COLUMN scan_through BIGINT NOT NULL DEFAULT 0 CHECK(scan_through >= scan_after);
|