Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
larrybabb committed Dec 27, 2024
1 parent 20d6b01 commit db88e0f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/general/tables-columns-exists-proc.sql
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ BEGIN
ELSE
SET validation_message = FORMAT("""
%s was last processed for release date %t as expected.
""", table_name, last_processed_release_date, previous_release_date);
""", table_name, last_processed_release_date);
END IF;

END;
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ CREATE OR REPLACE PROCEDURE `clinvar_ingest.clinvar_submitters`(
schema_name STRING,
release_date DATE,
previous_release_date DATE,
OUT validation_message STRING
OUT result_message STRING
)
BEGIN
DECLARE is_valid BOOL DEFAULT TRUE;
DECLARE error_message STRING DEFAULT '';
DECLARE validation_message STRING DEFAULT '';

-- validate the last release date for clinvar_submitters
CALL `clinvar_ingest.validate_last_release`('clinvar_submitters', previous_release_date, is_valid, validation_message);
Expand Down

0 comments on commit db88e0f

Please sign in to comment.