-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'RELEASE/v1.1.0.14' into 'master'
Release/v1.1.0.14 See merge request ACVTS/GenVals/gen-val!565
- Loading branch information
Showing
463 changed files
with
313,044 additions
and
302,917 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
CREATE PROCEDURE [dbo].[AlgorithmGet] | ||
|
||
@AlgorithmId bigint | ||
|
||
AS | ||
|
||
SET NOCOUNT ON | ||
|
||
SELECT AlgorithmId | ||
,[Name] | ||
,Mode | ||
,Revision | ||
,DisplayName | ||
,Alias | ||
,Historical | ||
,DisplayOnCSRC | ||
,SupportedByACVP | ||
FROM dbo.Algorithms | ||
WHERE AlgorithmId = @AlgorithmId |
11 changes: 11 additions & 0 deletions
11
DB/ACVP_DB/dbo/Stored Procedures/AlgorithmPropertyStringValueDisplayMappingDelete.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
CREATE PROCEDURE [dbo].[AlgorithmPropertyStringValueDisplayMappingDelete] | ||
|
||
@AlgorithmPropertyStringValueDisplayMappingId bigint | ||
|
||
AS | ||
|
||
SET NOCOUNT ON | ||
|
||
DELETE | ||
FROM dbo.AlgorithmPropertyStringValueDisplayMapping | ||
WHERE AlgorithmPropertyStringValueDisplayMappingId = @AlgorithmPropertyStringValueDisplayMappingId |
22 changes: 22 additions & 0 deletions
22
DB/ACVP_DB/dbo/Stored Procedures/AlgorithmPropertyStringValueDisplayMappingInsert.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
CREATE PROCEDURE [dbo].[AlgorithmPropertyStringValueDisplayMappingInsert] | ||
|
||
@AlgorithmPropertyId bigint | ||
,@StringValue nvarchar(512) | ||
,@DisplayValue nvarchar(512) | ||
|
||
AS | ||
|
||
SET NOCOUNT ON | ||
|
||
INSERT INTO dbo.AlgorithmPropertyStringValueDisplayMapping ( | ||
AlgorithmPropertyId | ||
,StringValue | ||
,DisplayValue | ||
) | ||
VALUES ( | ||
@AlgorithmPropertyId | ||
,@StringValue | ||
,@DisplayValue | ||
) | ||
|
||
SELECT CAST(SCOPE_IDENTITY() AS bigint) AS AlgorithmPropertyStringValueDisplayMappingId |
14 changes: 14 additions & 0 deletions
14
DB/ACVP_DB/dbo/Stored Procedures/AlgorithmPropertyStringValueDisplayMappingUpdate.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
CREATE PROCEDURE [dbo].[AlgorithmPropertyStringValueDisplayMappingUpdate] | ||
|
||
@AlgorithmPropertyStringValueDisplayMappingId bigint | ||
,@StringValue nvarchar(512) | ||
,@DisplayValue nvarchar(512) | ||
|
||
AS | ||
|
||
SET NOCOUNT ON | ||
|
||
UPDATE dbo.AlgorithmPropertyStringValueDisplayMapping | ||
SET StringValue = @StringValue | ||
,DisplayValue = @DisplayValue | ||
WHERE AlgorithmPropertyStringValueDisplayMappingId = @AlgorithmPropertyStringValueDisplayMappingId |
13 changes: 13 additions & 0 deletions
13
DB/ACVP_DB/dbo/Stored Procedures/AlgorithmPropertyStringValueDisplayMappingsGet.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
CREATE PROCEDURE [dbo].[AlgorithmPropertyStringValueDisplayMappingsGet] | ||
|
||
@AlgorithmPropertyId bigint | ||
|
||
AS | ||
|
||
SET NOCOUNT ON | ||
|
||
SELECT AlgorithmPropertyStringValueDisplayMappingId | ||
,StringValue | ||
,DisplayValue | ||
FROM dbo.AlgorithmPropertyStringValueDisplayMapping | ||
WHERE AlgorithmPropertyId = @AlgorithmPropertyId |
28 changes: 28 additions & 0 deletions
28
DB/ACVP_DB/dbo/Stored Procedures/AlgorithmPropertyUpdate.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
CREATE PROCEDURE [dbo].[AlgorithmPropertyUpdate] | ||
|
||
@AlgorithmPropertyId bigint | ||
,@PropertyName nvarchar(128) | ||
,@ParentAlgorithmPropertyId bigint | ||
,@DefaultValue nvarchar(128) | ||
,@Historical bit | ||
,@DisplayName nvarchar(128) | ||
,@InCertificate bit | ||
,@OrderIndex int | ||
,@IsRequired bit | ||
,@UnitsLabel nvarchar(128) | ||
|
||
AS | ||
|
||
SET NOCOUNT ON | ||
|
||
UPDATE dbo.AlgorithmProperties | ||
SET PropertyName = @PropertyName | ||
,ParentAlgorithmPropertyId = @ParentAlgorithmPropertyId | ||
,DefaultValue = @DefaultValue | ||
,Historical = @Historical | ||
,DisplayName = @DisplayName | ||
,InCertificate = @InCertificate | ||
,OrderIndex = @OrderIndex | ||
,IsRequired = @IsRequired | ||
,UnitsLabel = @UnitsLabel | ||
WHERE AlgorithmPropertyId = @AlgorithmPropertyId |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
CREATE PROCEDURE [dbo].[AlgorithmUpdate] | ||
|
||
@AlgorithmId bigint | ||
,@Name nvarchar(128) | ||
,@Mode nvarchar(128) | ||
,@Revision nvarchar(32) | ||
,@DisplayName nvarchar(128) | ||
,@Historical bit | ||
,@DisplayOnCSRC bit | ||
,@SupportedByACVP bit | ||
|
||
AS | ||
|
||
SET NOCOUNT ON | ||
|
||
UPDATE dbo.Algorithms | ||
SET [Name] = @Name | ||
,Mode = @Mode | ||
,Revision = @Revision | ||
,DisplayName = @DisplayName | ||
,Historical = @Historical | ||
,DisplayOnCSRC = @DisplayOnCSRC | ||
,SupportedByACVP = @SupportedByACVP | ||
WHERE AlgorithmId = @AlgorithmId |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,6 @@ SELECT AlgorithmId | |
,DisplayName | ||
,Alias | ||
,Historical | ||
,DisplayOnCSRC | ||
,SupportedByACVP | ||
FROM dbo.Algorithms |
12 changes: 12 additions & 0 deletions
12
DB/ACVP_DB/dbo/Stored Procedures/LabVectorSetAllotmentUsageInsert.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
CREATE PROCEDURE [dbo].[LabVectorSetAllotmentUsageInsert] | ||
|
||
@LabVectorSetAllotmentId int | ||
,@LabVectorSetRequestId int | ||
,@VectorSetCount int | ||
|
||
AS | ||
|
||
SET NOCOUNT ON | ||
|
||
INSERT INTO LabVectorSetAllotmentUsage (LabVectorSetAllotmentId, LabVectorSetRequestId, VectorSetCount, UsageDate) | ||
VALUES (@LabVectorSetAllotmentId, @LabVectorSetRequestId, @VectorSetCount, CURRENT_TIMESTAMP) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
DB/ACVP_DB/dbo/Stored Procedures/PropertiesForAlgorithmGet.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
CREATE PROCEDURE [dbo].[PropertiesForAlgorithmGet] | ||
|
||
@AlgorithmId bigint | ||
|
||
AS | ||
|
||
SET NOCOUNT ON | ||
|
||
SELECT AlgorithmPropertyId | ||
,AlgorithmId | ||
,PropertyName | ||
,ParentAlgorithmPropertyId | ||
,AlgorithmPropertyTypeId | ||
,DefaultValue | ||
,Historical | ||
,DisplayName | ||
,InCertificate | ||
,OrderIndex | ||
,IsRequired | ||
,UnitsLabel | ||
FROM dbo.AlgorithmProperties | ||
WHERE AlgorithmId = @AlgorithmId |
50 changes: 0 additions & 50 deletions
50
DB/ACVP_DB/dbo/Stored Procedures/RecursivelyCreateCapability.sql
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
CREATE TABLE [dbo].[LabVectorSetAllotmentUsage] | ||
( | ||
[LabVectorSetAllotmentUsageId] INT IDENTITY(1,1) NOT NULL, | ||
[LabVectorSetAllotmentId] INT NOT NULL, | ||
[LabVectorSetRequestId] INT NOT NULL, | ||
[VectorSetCount] INT NOT NULL, | ||
[UsageDate] DATETIME2 NOT NULL, | ||
CONSTRAINT [PK_LabVectorSetAllotmentUsage] PRIMARY KEY CLUSTERED ([LabVectorSetAllotmentUsageId] ASC), | ||
CONSTRAINT [FK_LabVectorSetAllotmentUsage_LabVectorSetAllotments] FOREIGN KEY ([LabVectorSetAllotmentId]) REFERENCES [dbo].[LabVectorSetAllotments]([LabVectorSetAllotmentId]), | ||
CONSTRAINT [FK_LabVectorSetAllotmentUsage_LabVectorSetRequests] FOREIGN KEY ([LabVectorSetRequestId]) REFERENCES [dbo].[LabVectorSetRequests]([LabVectorSetRequestId]) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.