mirror of
https://github.com/google/nomulus.git
synced 2025-05-13 16:07:15 +02:00
mv com/google/domain/registry google/registry
This change renames directories in preparation for the great package rename. The repository is now in a broken state because the code itself hasn't been updated. However this should ensure that git correctly preserves history for each file.
This commit is contained in:
parent
a41677aea1
commit
5012893c1d
2396 changed files with 0 additions and 0 deletions
32
java/google/registry/tools/sql/registry_data_view.sql
Normal file
32
java/google/registry/tools/sql/registry_data_view.sql
Normal file
|
@ -0,0 +1,32 @@
|
|||
-- Registry Data View SQL
|
||||
--
|
||||
-- This query lists registry fields necessary for billing.
|
||||
--
|
||||
-- TODO(b/20764952): extend this view to support timed transition properties.
|
||||
-- TODO(b/18092292): add a column for whether the TLD is "billable" or not.
|
||||
SELECT
|
||||
tldStr AS tld,
|
||||
tldType AS type,
|
||||
-- This relies on the fact that we currently haven't ever used more than one
|
||||
-- value with renewBillingCostTransitions.
|
||||
-- TODO(b/20764952): fix this limitation.
|
||||
FIRST(renewBillingCostTransitions.billingCost) WITHIN RECORD
|
||||
AS renewBillingCost,
|
||||
-- Grace period lengths are stored in the ISO 8601 duration format as a
|
||||
-- duration in seconds, which produces a string of the form "PT####S".
|
||||
INTEGER(REGEXP_EXTRACT(autoRenewGracePeriodLength, r'PT(.+)S'))
|
||||
AS autorenewGracePeriodSeconds,
|
||||
premiumList.path AS premiumListPath,
|
||||
-- TODO(b/18265521): remove this column once the referenced bug is fixed;
|
||||
-- this column is only included because without it BigQuery will complain
|
||||
-- that we aren't consuming reservedLists (due to it having a repeated .path
|
||||
-- child field, which overlaps with premiumList.path above).
|
||||
GROUP_CONCAT_UNQUOTED(reservedLists.path, "/") WITHIN RECORD
|
||||
AS reservedListPaths,
|
||||
FROM
|
||||
[%SOURCE_DATASET%.Registry]
|
||||
WHERE
|
||||
-- Filter out Registry 1.0 data - TODO(b/20828509): remove this.
|
||||
__key__.namespace = ''
|
||||
ORDER BY
|
||||
tld
|
Loading…
Add table
Add a link
Reference in a new issue