Hi
I've been running some spot checks on my analysis and I noticed some discrepancies between daily_races_beta and historic_races_beta, for example:
select * from daily_runners_beta ru
inner join daily_races_beta ra on ra.race_id = ru.race_id
where name = 'Buckshaw Village' and meeting_date = '2022-09-08'
This returns 1 row, whereas this:
select * from historic_runners_beta ru
inner join historic_races_beta ra on ra.race_id = ru.race_id
where name = 'Buckshaw Village' and meeting_date = '2022-09-08'
returns no rows.
This kind of messes up my historical analysis as when running through previous dates, it uses the historic_races_beta as the race details for the date in question. When I go back and simulate the picks for this date using daily_races_beta, it chooses more horses as there are more races.
Is this anomaly a frequent occurrence?
Thanks