Skip to content

Commit

Permalink
fix >=
Browse files Browse the repository at this point in the history
  • Loading branch information
gingerwizard authored Dec 21, 2024
1 parent 292f554 commit 6725289
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/en/data-modeling/backfilling.md
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ CREATE MATERIALIZED VIEW pypi_downloads_per_day_mv TO pypi_downloads_per_day
AS SELECT
toStartOfHour(timestamp) as hour,
project, count() AS count
FROM pypi WHERE timestamp < '2024-12-17 09:00:00'
FROM pypi WHERE timestamp >= '2024-12-17 09:00:00'
GROUP BY hour, project
```

Expand Down

0 comments on commit 6725289

Please sign in to comment.