Skip to content

Commit bb3e465

Browse files
committed
OP-780 Fixed missing formatting in procedure files
1 parent 307403d commit bb3e465

13 files changed

Lines changed: 13 additions & 7 deletions

output/fullDemoDatabase.sql

-7.14 MB
Binary file not shown.

output/fullEmptyDatabase.sql

-2.47 MB
Binary file not shown.

output/fullMigrationScipt.sql

-1.36 MB
Binary file not shown.
-2.47 MB
Binary file not shown.

output/fullOfflineHFDatabase.sql

-2.47 MB
Binary file not shown.
-45.9 KB
Binary file not shown.

sql/stored_procedures/uspCreateCHFIDHANS.sql

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1+
IF OBJECT_ID('[dbo].[uspCreateCHFIDHANS]', 'P') IS NOT NULL
2+
DROP PROCEDURE [dbo].[uspCreateCHFIDHANS]
3+
GO
4+
15
SET ANSI_NULLS ON
26
GO
37
SET QUOTED_IDENTIFIER ON
48
GO
5-
69
CREATE OR ALTER PROCEDURE [dbo].[uspCreateCHFIDHANS]
710
(
811
@HowMany INT

sql/stored_procedures/uspGetPolicyRenewals.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
IF OBJECT_ID('[uspGetPolicyRenewals]', 'P') IS NOT NULL
2-
DROP PROCEDURE [uspGetPolicyRenewals]
1+
IF OBJECT_ID('[dbo].[uspGetPolicyRenewals]', 'P') IS NOT NULL
2+
DROP PROCEDURE [dbo].[uspGetPolicyRenewals]
33
GO
44

55
SET ANSI_NULLS ON

sql/stored_procedures/uspInsertFeedback.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
IF OBJECT_ID('[uspInsertFeedback]', 'P') IS NOT NULL
2-
DROP PROCEDURE [uspInsertFeedback]
1+
IF OBJECT_ID('[dbo].[uspInsertFeedback]', 'P') IS NOT NULL
2+
DROP PROCEDURE [dbo].[uspInsertFeedback]
33
GO
44

55
SET ANSI_NULLS ON

sql/stored_procedures/uspProcessbatch.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,5 @@ FINISH:
283283
ERROR_MESSAGE() AS ErrorMessage
284284
IF @InTopIsolation = 0 ROLLBACK TRANSACTION PROCESSCLAIMS
285285
RETURN @oReturnValue
286-
287286
END
288287
GO

0 commit comments

Comments
 (0)