Skip to content

Commit

Permalink
Merge pull request #53 from smiggleworth/develop
Browse files Browse the repository at this point in the history
Roll-up Develop
  • Loading branch information
smiggleworth authored Jul 18, 2018
2 parents 11c8449 + 603f878 commit c731a2b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/Quidjibo.SqlServer/Scripts/Work/Receive.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DELETE FROM [Quidjibo].[Work] WITH (ROWLOCK, READPAST, UPDLOCK)
DELETE FROM [Quidjibo].[Work] WITH (ROWLOCK, READPAST, UPDLOCK)
WHERE [CreatedOn] < @DeleteOn
AND ([ExpireOn] IS NULL OR [ExpireOn] < @DeleteOn);

Expand Down
1 change: 0 additions & 1 deletion src/Quidjibo.SqlServer/Scripts/Work/Setup.sql
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,3 @@ CREATE NONCLUSTERED INDEX [IX_Work_Cleanup] ON [Quidjibo].[Work]
[CreatedOn] ASC,
[ExpireOn] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
GO

0 comments on commit c731a2b

Please sign in to comment.