docs(changelog): record Tier 15 fact_quotes shipped with PR #16 - #17
Merged
Conversation
The Tier 14 push script staged the same file list as the planned Tier 15 push (ddl/equity/0[2456]_*.sql, known_field_mapping_gaps.csv, CHANGELOG.md). Because the working tree carried both tiers' edits at the time of push_tier14 execution, PR #16 (commit b9f5d8c) physically contains: - fact_allocations DDL (intended Tier 14, MEPA/MEAA, 19 mapping rows) - fact_quotes DDL (intended Tier 15, MENQ/MENQS/MERQ/MERQS/MEQR/MEQC/MEQM/MEQS, 31 mapping rows) - known_field_mapping_gaps.csv: 201 -> 151 rows (-50, both tiers combined) The empty Tier 15 branch has been deleted. This commit adds a CHANGELOG note so the audit trail records that Tier 15 work shipped with PR #16, not a separate Tier 15 PR.
The Tier 14 push script staged the same file list as the planned Tier 15 push (ddl/equity/0[2456]_*.sql, known_field_mapping_gaps.csv, CHANGELOG.md). Because the working tree carried both tiers' edits at the time of push_tier14 execution, PR #16 (commit b9f5d8c) physically contains: - fact_allocations DDL (intended Tier 14, MEPA/MEAA, 19 mapping rows) - fact_quotes DDL (intended Tier 15, MENQ/MENQS/MERQ/MERQS/MEQR/MEQC/MEQM/MEQS, 31 mapping rows) - known_field_mapping_gaps.csv: 201 -> 151 rows (-50, both tiers combined) The empty Tier 15 branch has been deleted. This commit adds a CHANGELOG note so the audit trail records that Tier 15 work shipped with PR #16, not a separate Tier 15 PR.
6 tasks
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.
Summary
Documentation-only patch. Records that the Tier 15
fact_quotesDDL was physically committed in PR #16 (Tier 14) because both tiers' edits accumulated in the working tree before the Tier 14 push script ran.Why this happened
push_tier14_pr.shandpush_tier15_pr.shstage the same file list. Tier 15 was built on top of Tier 14 in the same files. When the user ranpush_tier14_pr.sh,git addcaptured both tiers' edits, and the Tier 14 commit shipped with both schemas.Evidence
git show b9f5d8c -- ddl/equity/02_equity_gold_delta.sqlshows both+CREATE TABLE gold.fact_allocationsand+CREATE TABLE gold.fact_quotes. Theknown_field_mapping_gaps.csvdelta in PR #16 is -50 lines (19 fact_allocations + 31 fact_quotes).What this PR does
What this PR does NOT do
Followup
Tier 16 push script will pin file paths more narrowly to prevent recurrence.