Skip to content

Commit

Permalink
changed json_agg to array_agg (#993)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroenriemens authored Mar 18, 2024
1 parent 11aece1 commit 933640b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion datasets/dataverkenner/kadastraleobjectm/dataset.json
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,10 @@
"description": "Een numerieke aanduiding van het kadastrale perceel per sectie, deel van de kadastrale aanduiding van de onroerende zaak."
},
"heeftEenRelatieMetBagVerblijfsobjectIdentificaties": {
"type": "string",
"type": "array",
"items": {
"type": "string"
},
"description": "Relatie naar verblijfsobject(en)"
},
"beginGeldigheid": {
Expand Down
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
, json_agg(hft_rel_mt_vot_identificatie) as vots
, array_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::VARCHAR 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 933640b

Please sign in to comment.