Skip to content

Commit

Permalink
corrected invalid variable setting
Browse files Browse the repository at this point in the history
  • Loading branch information
larrybabb committed Dec 27, 2024
1 parent db88e0f commit eb87251
Showing 1 changed file with 1 addition and 1 deletion.
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 @@ -45,7 +45,7 @@ BEGIN
""", table_name) INTO last_processed_release_date;

-- validate that the max end_release_date is the previous release date otherwise throw an error
SET is_valid = (last_processed_release_date != previous_release_date);
SET is_valid = (last_processed_release_date = previous_release_date);
IF NOT is_valid THEN
SET validation_message = FORMAT("""
%s was last processed for release date %t but the expected date is %t.
Expand Down

0 comments on commit eb87251

Please sign in to comment.