tons of work, dear god what a spaghetti

This commit is contained in:
Pablo Martin 2024-04-04 10:54:56 +02:00
parent dbd2f44795
commit 5101a2a45e
8 changed files with 152 additions and 5 deletions

View file

@ -7,7 +7,8 @@ with
{{ adapter.quote("AirbnbUrl") }} as airbnb_url,
{{ adapter.quote("CreatedDate") }} as created_date_utc,
{{ adapter.quote("UpdatedDate") }} as updated_date_utc,
{{ adapter.quote("VerifiedDate") }} as verified_date_utc,
{{ adapter.quote("VerifiedDate") }} as verified_at_utc,
cast({{ adapter.quote("VerifiedDate") }} as date) as verified_date_utc,
{{ adapter.quote("FlagAsProblem") }} as flag_as_problem,
{{ adapter.quote("SuperhogUserId") }} as id_superhoguser,
{{ adapter.quote("NumberOfProperties") }} as number_of_properties,

View file

@ -8,7 +8,8 @@ with
{{ adapter.quote("Title") }} as title,
{{ adapter.quote("DealId") }} as id_deal,
{{ adapter.quote("Deleted") }} as is_deleted,
{{ adapter.quote("JoinDate") }} as join_date_utc,
{{ adapter.quote("JoinDate") }} as joined_at_utc,
cast({{ adapter.quote("JoinDate") }} as date) as joined_date_utc,
{{ adapter.quote("LastName") }} as last_name,
{{ adapter.quote("UserName") }} as user_name,
{{ adapter.quote("FirstName") }} as first_name,