Skip to content

Commit

Permalink
Merge pull request #1829 from bcgov/bugfix/ALCS-2228-2
Browse files Browse the repository at this point in the history
Add missing semicolon
  • Loading branch information
trslater authored Sep 5, 2024
2 parents 295938a + ae59182 commit 3647bce
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export class MissedChaseInquiriesEtl1724368028724
left join oats.oats_persons filer_person on filer_person.person_id = filer_pog.person_id
left join oats.oats_organizations filer_org on filer_org.organization_id = filer_pog.organization_id
where gov.organization_name = 'VILLAGE OF CHASE'
and oi.issu_type = 'INQ'
and oi.issu_type = 'INQ';
END IF;
END $$;
`);
Expand Down Expand Up @@ -126,7 +126,7 @@ export class MissedChaseInquiriesEtl1724368028724
join alcs.document_code dc on dc.oats_code = od.document_code
join alcs.inquiry i on i.file_number = oi.issue_id::varchar
where oo.organization_name = 'VILLAGE OF CHASE'
and oi.issu_type = 'INQ'
and oi.issu_type = 'INQ';
END IF;
END $$;
`);
Expand Down Expand Up @@ -159,7 +159,7 @@ export class MissedChaseInquiriesEtl1724368028724
join alcs.inquiry i on i.file_number = oi.issue_id::varchar
join alcs."document" d on d.oats_document_id = od.document_id::varchar
where oo.organization_name = 'VILLAGE OF CHASE'
and oi.issu_type = 'INQ'
and oi.issu_type = 'INQ';
END IF;
END $$;
`);
Expand Down Expand Up @@ -197,7 +197,7 @@ export class MissedChaseInquiriesEtl1724368028724
join oats.oats_properties op on op.property_id = osp.property_id
join alcs.inquiry i on oi.issue_id::varchar = i.file_number
where oo.organization_name = 'VILLAGE OF CHASE'
and oi.issu_type = 'INQ'
and oi.issu_type = 'INQ';
END IF;
END $$;
`);
Expand Down

0 comments on commit 3647bce

Please sign in to comment.