Skip to content
This repository was archived by the owner on Jul 6, 2021. It is now read-only.

Commit e680614

Browse files
committed
Merge branch 'a004-wording-fix' into 'master'
Fix wording total->average number of files per day See merge request postgres-ai/postgres-checkup!453
2 parents cca895d + ebf5266 commit e680614

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/checks/A004_cluster_info.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ with data as (
106106
select 'Temp Files: total number of files', temp_files::text from data
107107
union all
108108
select
109-
'Temp Files: total number of files per day',
109+
'Temp Files: average number of files per day',
110110
case
111111
when (((extract(epoch from now()) - extract(epoch from data.stats_reset))/86400)::int) <> 0 then
112112
(temp_files / (((extract(epoch from now()) - extract(epoch from data.stats_reset))/86400)::int))::text

0 commit comments

Comments
 (0)