Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -408,3 +408,4 @@ FodyWeavers.xsd
# Direct_Framework/Reference_Databases/[Bb]in/[Dd]ebug/*
# !Direct_Framework/Reference_Databases/bin/Debug/master.dacpac
# !Direct_Framework/Reference_Databases/bin/Debug/msdb.dacpac
/.vscode
3 changes: 1 addition & 2 deletions Direct_Framework/Direct_Framework.sqlproj
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@
<None Include="BuildTools\PostBuild.ps1" />
<None Include="BuildTools\PreBuild.cmd" />
<None Include="BuildTools\PreBuild.ps1" />
<None Include="Direct_Framework.publish.xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Condition="'$(NetCoreBuild)' == 'true'">
Expand All @@ -227,4 +226,4 @@
<Target Name="BeforeBuild">
<Delete Files="$(BaseIntermediateOutputPath)\project.assets.json" />
</Target>
</Project>
</Project>
2 changes: 1 addition & 1 deletion Direct_Framework/Stored Procedures/omd.RegisterBatch.sql
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ BEGIN TRY

-- Evaluate the incoming values to see if the Batch should be updated.
-- Note that the active indicator is excluded here, to allow it to be managed separately.
DECLARE @NewChecksum BINARY(20) =
DECLARE @NewChecksum VARBINARY(64) =
HASHBYTES('SHA2_512',
@BatchType + '!' +
@BatchFrequency + '!' +
Expand Down
4 changes: 2 additions & 2 deletions Direct_Framework/Stored Procedures/omd.RegisterModule.sql
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ BEGIN TRY
-- Evaluate the incoming values to see if the Module should be updated.
-- Note that the active indicator is excluded here,
-- to allow it to be managed separately.
DECLARE @NewChecksum BINARY(20) =
DECLARE @NewChecksum VARBINARY(64) =
HASHBYTES('SHA2_512',
@ModuleType + '!' +
@ModuleSourceDataObject + '!' +
Expand All @@ -201,7 +201,7 @@ BEGIN TRY
SET @MessageLog = [omd].[AddLogMessage](DEFAULT, DEFAULT, N'Status Update', @LogMessage, @MessageLog)

-- Evaluate the existing values to see if the Module requires to be updated.
DECLARE @ExistingChecksum BINARY(20);
DECLARE @ExistingChecksum VARBINARY(64);
SELECT @ExistingChecksum =
HASHBYTES('SHA2_512',
COALESCE([MODULE_TYPE], 'N/A') + '!' +
Expand Down
Loading