Removed coalesce so it includes NULL for failed validations
This commit is contained in:
parent
e8b76e130e
commit
798fc7b937
2 changed files with 2 additions and 1 deletions
|
|
@ -11,7 +11,7 @@ select
|
||||||
vtav.id_verification as id_verification,
|
vtav.id_verification as id_verification,
|
||||||
v.id_verification_request as id_verification_request,
|
v.id_verification_request as id_verification_request,
|
||||||
av.id_accommodation as id_accommodation,
|
av.id_accommodation as id_accommodation,
|
||||||
coalesce(av.validation_passed, false) as validation_passed,
|
av.validation_passed as validation_passed,
|
||||||
av.feature_size_meters as feature_size_meters,
|
av.feature_size_meters as feature_size_meters,
|
||||||
av.feature_size_meters_upper_limit as feature_size_meters_upper_limit,
|
av.feature_size_meters_upper_limit as feature_size_meters_upper_limit,
|
||||||
av.notes as notes,
|
av.notes as notes,
|
||||||
|
|
|
||||||
|
|
@ -1898,6 +1898,7 @@ models:
|
||||||
values:
|
values:
|
||||||
- True
|
- True
|
||||||
- False
|
- False
|
||||||
|
- Null
|
||||||
|
|
||||||
- name: feature_size_meters
|
- name: feature_size_meters
|
||||||
data_type: numeric
|
data_type: numeric
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue