add tie-out check for post-conversion
This commit is contained in:
parent
f57cb5f26a
commit
f5d464677e
22
build/check_osmf_match.sql
Normal file
22
build/check_osmf_match.sql
Normal file
@ -0,0 +1,22 @@
|
||||
SELECT
|
||||
order_season
|
||||
,sum(value_usd) value_usd
|
||||
FROM
|
||||
rlarp.osm_pool
|
||||
WHERE
|
||||
order_season = 2021
|
||||
--AND version = 'b21'
|
||||
GROUP BY
|
||||
order_season
|
||||
UNION ALL
|
||||
SELECT
|
||||
oseas
|
||||
,sum(fb_val_loc * r_rate) value_usd
|
||||
FROM
|
||||
rlarp.osmf_dev
|
||||
WHERE
|
||||
oseas = 2021
|
||||
AND version = 'b21'
|
||||
GROUP BY
|
||||
oseas
|
||||
|
Loading…
Reference in New Issue
Block a user