Skip to content

Commit

Permalink
Reduce Post SQL Init iterations to 10,000
Browse files Browse the repository at this point in the history
* We don't _really_ need 50,000 opportunities to test
  • Loading branch information
rblaine95 committed Apr 24, 2024
1 parent f2cca14 commit 3bb894c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/cicd/scripts/postgressql-init/post.sql
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ DECLARE
V_RandomLengthOther INT := ABS(FLOOR(RANDOM() * 101) + 100);
V_DateCreated TIMESTAMP := (CURRENT_TIMESTAMP AT TIME ZONE 'UTC');
V_DateStart TIMESTAMP := (CURRENT_TIMESTAMP AT TIME ZONE 'UTC') - INTERVAL '2 day';
V_Iterations INT := 50000;
V_Iterations INT := 10000;
V_RowCount INT := 0;
V_VerificationEnabled BOOLEAN := false;
BEGIN
Expand Down

0 comments on commit 3bb894c

Please sign in to comment.