mirror of
https://github.com/google/nomulus.git
synced 2025-07-09 04:33:28 +02:00
Fix invoicing SQL (#824)
This commit is contained in:
parent
fd40a6a2b9
commit
71fa12f773
2 changed files with 2 additions and 2 deletions
|
@ -55,7 +55,7 @@ FROM (
|
||||||
FROM
|
FROM
|
||||||
`%PROJECT_ID%.%DATASTORE_EXPORT_DATA_SET%.%REGISTRY_TABLE%`
|
`%PROJECT_ID%.%DATASTORE_EXPORT_DATA_SET%.%REGISTRY_TABLE%`
|
||||||
WHERE
|
WHERE
|
||||||
enableInvoicing IS TRUE) ) AS BillingEvent
|
invoicingEnabled IS TRUE) ) AS BillingEvent
|
||||||
-- Gather billing ID from registrar table
|
-- Gather billing ID from registrar table
|
||||||
-- This is a 'JOIN' as opposed to 'LEFT JOIN' to filter out
|
-- This is a 'JOIN' as opposed to 'LEFT JOIN' to filter out
|
||||||
-- non-billable registrars
|
-- non-billable registrars
|
||||||
|
|
|
@ -55,7 +55,7 @@ FROM (
|
||||||
FROM
|
FROM
|
||||||
`my-project-id.latest_datastore_export.Registry`
|
`my-project-id.latest_datastore_export.Registry`
|
||||||
WHERE
|
WHERE
|
||||||
enableInvoicing IS TRUE) ) AS BillingEvent
|
invoicingEnabled IS TRUE) ) AS BillingEvent
|
||||||
-- Gather billing ID from registrar table
|
-- Gather billing ID from registrar table
|
||||||
-- This is a 'JOIN' as opposed to 'LEFT JOIN' to filter out
|
-- This is a 'JOIN' as opposed to 'LEFT JOIN' to filter out
|
||||||
-- non-billable registrars
|
-- non-billable registrars
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue