Exclude Fivetran's incorrect Stripe customer discount records from SubPlat ETLs. (#6443)

This commit is contained in:
Sean Rose 2024-11-04 18:50:03 -08:00 коммит произвёл GitHub
Родитель 76351c7cfb
Коммит 73f47fc0e3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -12,3 +12,6 @@ SELECT
subscription_id,
FROM
`moz-fx-data-bq-fivetran`.stripe.customer_discount
WHERE
-- Fivetran used to have a bug where it synced subscription discounts as customer discounts.
subscription_id IS NULL

Просмотреть файл

@ -17,3 +17,6 @@ SELECT
subscription_id,
FROM
`moz-fx-data-bq-fivetran.stripe.discount`
WHERE
-- Fivetran used to have a bug where it synced subscription discounts as customer discounts.
NOT (type = 'CUSTOMER' AND subscription_id IS NOT NULL)