mirror of
https://github.com/google/nomulus
synced 2026-01-09 23:47:49 +00:00
Coalesce null to the empty string in the Spec11 pipeline
We'll have a separate change to make sure we're not actually trying to email these folks, but this will make it so that the entire pipeline doesn't crash. The test makes sure that we can run the pipeline properly with these empty strings. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=240346954
This commit is contained in:
@@ -21,7 +21,7 @@
|
||||
SELECT
|
||||
domain.fullyQualifiedDomainName AS fullyQualifiedDomainName,
|
||||
registrar.name AS registrarName,
|
||||
registrar.emailAddress AS registrarEmailAddress
|
||||
COALESCE(registrar.emailAddress, '') AS registrarEmailAddress
|
||||
FROM ( (
|
||||
SELECT
|
||||
fullyQualifiedDomainName,
|
||||
|
||||
Reference in New Issue
Block a user