@@ -3,9 +3,9 @@ SELECT c.id as customer_id,
3
3
p .uuid as provider_uuid,
4
4
p .type as source_type,
5
5
rm .assembly_id ,
6
- rm .manifest_creation_datetime ,
7
- counts .manifest_updated_datetime ,
8
- rm .manifest_completed_datetime ,
6
+ rm .creation_datetime ,
7
+ counts .updated_datetime ,
8
+ rm .completed_datetime ,
9
9
rm .billing_period_start_datetime ,
10
10
counts .num_processed_files ,
11
11
counts .num_total_files
@@ -16,19 +16,19 @@ JOIN public.api_customer AS c
16
16
ON p .customer_id = c .id
17
17
JOIN (
18
18
SELECT rm .id ,
19
- count (rs.* ) FILTER (WHERE last_completed_datetime IS NOT NULL ) AS num_processed_files,
19
+ count (rs.* ) FILTER (WHERE rs . completed_datetime IS NOT NULL ) AS num_processed_files,
20
20
count (rs.* ) AS num_total_files,
21
- max (rs .last_completed_datetime ) as manifest_updated_datetime
21
+ max (rs .completed_datetime ) as updated_datetime
22
22
FROM public .reporting_common_costusagereportmanifest AS rm
23
23
JOIN public .reporting_common_costusagereportstatus AS rs
24
24
ON rm .id = rs .manifest_id
25
25
GROUP BY rm .id
26
26
) AS counts
27
27
ON rm .id = counts .id
28
28
WHERE counts .num_processed_files != counts .num_total_files
29
- AND rm .manifest_creation_datetime >= current_date - INTERVAL ' 1 day'
30
- AND counts .manifest_updated_datetime < now() - INTERVAL ' 10 min' -- It has been longer than 10 minutes since we processed anything
29
+ AND rm .creation_datetime >= current_date - INTERVAL ' 1 day'
30
+ AND counts .updated_datetime < now() - INTERVAL ' 10 min' -- It has been longer than 10 minutes since we processed anything
31
31
ORDER BY c .id ,
32
32
p .type ,
33
- rm .manifest_creation_datetime
33
+ rm .creation_datetime
34
34
;
0 commit comments