Skip to content

Commit

Permalink
Exclude positions on end date during normalization
Browse files Browse the repository at this point in the history
  • Loading branch information
rdgfuentes committed Jul 2, 2024
1 parent c4e2e5b commit dc8b6e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
FROM
`{{source_table}}`
WHERE
DATE({{source_timestamp_field}}) BETWEEN '{{start_date}}' AND '{{end_date}}'
DATE({{source_timestamp_field}}) >= '{{start_date}}' < '{{end_date}}'
"""


Expand Down

0 comments on commit dc8b6e9

Please sign in to comment.