From 70cf3ce3128c48c988d9fc524cb6bef7a822a704 Mon Sep 17 00:00:00 2001 From: Pablo Martin Date: Tue, 10 Jun 2025 15:08:18 +0200 Subject: [PATCH] missing cast to make union work --- models/intermediate/core/int_core__vr_check_in_cover.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/models/intermediate/core/int_core__vr_check_in_cover.sql b/models/intermediate/core/int_core__vr_check_in_cover.sql index 581e840..a7b3320 100644 --- a/models/intermediate/core/int_core__vr_check_in_cover.sql +++ b/models/intermediate/core/int_core__vr_check_in_cover.sql @@ -128,9 +128,9 @@ with select vr.id_verification_request, vr.uuid_verification_request, - null as id_verification_set, - null as id_superhog_verified_set, - null as id_payment_validation_set, + cast(null as bigint) as id_verification_set, + cast(null as bigint) as id_superhog_verified_set, + cast(null as bigint) as id_payment_validation_set, vr.id_user_guest, vr.id_user_host, b.id_booking,