Skip to content

Commit

Permalink
fix > to <
Browse files Browse the repository at this point in the history
  • Loading branch information
lldelisle committed Dec 14, 2023
1 parent 40e544c commit 188e3b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parts/22-query.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4943,7 +4943,7 @@ query_tools-usage-per-month() { ##? [--startmonth=<YYYY>-<MM>] [--endmonth=<YYYY
if [[ -n $arg_startmonth ]]; then
filter_by_time_period="date_trunc('month', job.create_time AT TIME ZONE 'UTC') >= '$arg_startmonth-01'::date"
else
filter_by_time_period="job.create_time < NOW() - interval '1 year'"
filter_by_time_period="job.create_time > NOW() - interval '1 year'"
fi
if [[ -n $arg_endmonth ]]; then
filter_by_time_period=$filter_by_time_period "AND date_trunc('month', job.create_time AT TIME ZONE 'UTC') <= '$arg_endmonth-01'::date"
Expand Down

0 comments on commit 188e3b3

Please sign in to comment.