1
0
mirror of https://github.com/bitwarden/server synced 2026-02-08 12:40:08 +00:00

fix: remove Transaction from DeleteManyById SP

This commit is contained in:
Ike Kottlowski
2026-01-23 16:52:29 -05:00
parent aba5460a49
commit d603a8796d
2 changed files with 0 additions and 4 deletions

View File

@@ -9,7 +9,6 @@ BEGIN
-- Delete EmergencyAccess Records
WHILE @BatchSize > 0
BEGIN
BEGIN TRANSACTION
DELETE TOP(@BatchSize) EA
FROM
@@ -19,7 +18,6 @@ BEGIN
SET @BatchSize = @@ROWCOUNT
COMMIT TRANSACTION
END
END
GO

View File

@@ -9,7 +9,6 @@ BEGIN
-- Delete EmergencyAccess Records
WHILE @BatchSize > 0
BEGIN
BEGIN TRANSACTION
DELETE TOP(@BatchSize) EA
FROM
@@ -19,7 +18,6 @@ BEGIN
SET @BatchSize = @@ROWCOUNT
COMMIT TRANSACTION
END
END
GO