satellitedb/attribution: updates valueAttrQuery to work for both postgres and cockroach

Change-Id: I55d6c21950a66bf782596e9152622efd700c324a
This commit is contained in:
Jennifer Johnson 2019-12-03 00:20:20 -05:00 committed by paul cannon
parent ecb960f506
commit e9eff54473

View File

@ -62,7 +62,7 @@ const (
va.partner_id, va.partner_id,
bst.project_id, bst.project_id,
bst.bucket_name, bst.bucket_name,
hours date_trunc('hour', bst.interval_start)
ORDER BY ORDER BY
max_interval DESC max_interval DESC
) bsti ) bsti
@ -83,7 +83,7 @@ const (
bbr.bucket_name as bucket_name, bbr.bucket_name as bucket_name,
0 as remote, 0 as remote,
0 as inline, 0 as inline,
SUM(settled) as settled, SUM(settled)::integer as settled,
NULL as hours NULL as hours
FROM FROM
bucket_bandwidth_rollups bbr bucket_bandwidth_rollups bbr