Skip to content

Commit

Permalink
Remove useless parentheses in bucket_key formula (#63868)
Browse files Browse the repository at this point in the history
  • Loading branch information
arefrazavi authored and Christoph Büscher committed Oct 19, 2020
1 parent 977a4ad commit 245663e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ example, if the interval is a calendar day, `2020-01-03T07:00:01Z` is rounded to

[source,java]
----
bucket_key = Math.floor(value / interval) * interval)
bucket_key = Math.floor(value / interval) * interval
----

[[calendar_and_fixed_intervals]]
Expand Down

0 comments on commit 245663e

Please sign in to comment.