fix: case-insensitive team_abbrev filter in transactions endpoint #60
No reviewers
Labels
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: cal/major-domo-database#60
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "fix/transaction-team-filter-case-insensitive"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
team_abbrevquery filter onGET /transactionsuppercased input values but compared against mixed-case DB values (e.g.MKEMiL), causing affiliate roster transactions to be silently dropped from resultsfn.UPPER(Team.abbrev)to make the comparison case-insensitive--team MKE(orMKEMiL) missed transactions likeMKEMiL → FATest plan
GET /transactions?season=13&team_abbrev=MKEMiL&week_start=12&week_end=12— should return Tobias Myers (MKEMiL → FA)GET /transactions?season=13&team_abbrev=MKE&week_start=12&week_end=12— should still return all MKE major league transactions as before🤖 Generated with Claude Code