Skip to content

Commit 2812c29

Browse files
26282 Tombstone pipeline - appointment date in PST (#3281)
1 parent 970853c commit 2812c29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

data-tool/flows/tombstone/tombstone_queries.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -380,8 +380,8 @@ def get_parties_and_addresses_query(corp_num):
380380
when cp.appointment_dt is null and f.effective_dt is not null then date_trunc('day', f.effective_dt)
381381
when cp.appointment_dt is null and f.effective_dt is null then date_trunc('day', e.event_timerstamp)
382382
else null
383-
end)::timestamp at time zone 'UTC', 'YYYY-MM-DD HH24:MI:SSTZH:TZM') as cp_appointment_dt_str,
384-
to_char(cp.cessation_dt::timestamp at time zone 'UTC', 'YYYY-MM-DD HH24:MI:SSTZH:TZM') as cp_cessation_dt_str,
383+
end), 'YYYY-MM-DD') as cp_appointment_dt_str,
384+
to_char(cp.cessation_dt, 'YYYY-MM-DD') as cp_cessation_dt_str,
385385
cp.last_name as cp_last_name,
386386
cp.middle_name as cp_middle_name,
387387
cp.first_name as cp_first_name,

0 commit comments

Comments
 (0)