Skip to content

Commit

Permalink
changed the vot-relation to json (#983)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroenriemens authored Mar 12, 2024
1 parent f5ae0ba commit 1d77b52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datasets/dataverkenner/kadastraleobjectm/dataset.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ WITH verblijfsobjecten as
(
select
kadastraleobjecten_id
, array_agg(hft_rel_mt_vot_identificatie) as vots
, json_agg(hft_rel_mt_vot_identificatie) as vots
from
brk_2_kadastraleobjecten_hft_rel_mt_vot
WHERE eind_geldigheid IS null
Expand Down Expand Up @@ -36,7 +36,7 @@ brk_2_kadastraleobjecten.soort_grootte_omschrijving as "soort_grootte_omschrijvi
brk_2_kadastraleobjecten.toestandsdatum as "toestandsdatum",
brk_2_kadastraleobjecten.in_onderzoek as "in_onderzoek",
brk_2_kadastraleobjecten.indicatie_voorlopige_kadastrale_grens as "indicatie_voorlopige_kadastrale_grens",
verblijfsobjecten.vots as "heeft_een_relatie_met_bag_verblijfsobject_identificaties",
verblijfsobjecten.vots::VARCHAR as "heeft_een_relatie_met_bag_verblijfsobject_identificaties",
brk_2_kadastraleobjecten.geometrie
from brk_2_kadastraleobjecten
LEFT JOIN verblijfsobjecten ON brk_2_kadastraleobjecten.id=verblijfsobjecten.kadastraleobjecten_id
Expand Down

0 comments on commit 1d77b52

Please sign in to comment.