mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
fix sql script path
This commit is contained in:
parent
371f5303d7
commit
d0ee6a3012
2 changed files with 3 additions and 12 deletions
|
|
@ -1,9 +0,0 @@
|
|||
SELECT
|
||||
FilterListId,
|
||||
ModifiedDateUtc - CreatedDateUtc As ProcessingTimeSecs,
|
||||
CreatedDateUtc,
|
||||
ModifiedDateUtc,
|
||||
IsCompleted
|
||||
FROM snapshots
|
||||
WHERE ModifiedDateUtc - CreatedDateUtc > 30 OR IsCompleted = 0
|
||||
ORDER BY ProcessingTimeSecs DESC
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
SELECT
|
||||
FilterListId,
|
||||
ModifiedDateUtc - CreatedDateUtc,
|
||||
FilterListId,
|
||||
ModifiedDateUtc - CreatedDateUtc As ProcessingTimeSecs,
|
||||
CreatedDateUtc,
|
||||
ModifiedDateUtc,
|
||||
IsCompleted
|
||||
FROM snapshots
|
||||
WHERE ModifiedDateUtc - CreatedDateUtc > 30 OR IsCompleted = 0
|
||||
ORDER BY ModifiedDateUtc - CreatedDateUtc DESC
|
||||
ORDER BY ProcessingTimeSecs DESC
|
||||
Loading…
Reference in a new issue