Remove stale explorer_libyear_detail refresh from matview script#3540
Merged
MoralCode merged 1 commit intoaugurlabs:mainfrom Jan 10, 2026
Merged
Conversation
Signed-off-by: iGufrankhan <gufrankhankab123@gmail.com>
Collaborator
|
not sure why github has started being more aggressive about out of date stuff, but ill just merge this and bypass the warning |
guptapratykshh
pushed a commit
to guptapratykshh/pg-augur
that referenced
this pull request
Jan 11, 2026
…ibyear-matview Remove stale explorer_libyear_detail refresh from matview script Signed-off-by: guptapratykshh <pratykshgupta9999@gmail.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
The scripts/control/refresh-matviews.sh script references the materialized view
augur_data.explorer_libyear_detail.
This materialized view was dropped in migration 25 and is never recreated in any subsequent migration. As a result, running the refresh script against the current schema causes it to fail when attempting to refresh a non-existent view.
This pull request removes the stale refresh statement, bringing the script back into alignment with the current database schema.
This is a minimal, one-line fix and does not change any existing functionality beyond removing the invalid reference.
This PR fixes #3538
Notes for Reviewers
Note: Should be merged after #3482 (libyear column typo fix).
No runtime testing was performed, as this change removes a stale reference identified through schema and migration inspection.
Signed commits