Description
We need a guarantee that we will not filter data on a date using a timestamp with a time component that is non-zero.
Backend Requirements
- Add a hard failure to our Presto SQL processing code if we pass an arg to SQL that is a timestamp (we should only pass in date objects to avoid cleaving data from a day)
- Convert Presto SQL code to use timestamp comparisons where the underlying data type is a timestamp, making sure that the arg passed in has only a data component
Additional Information and Assumptions
- Anything else here
Acceptance Criteria
- See backend requirements