Skip to content

Commit

Permalink
fix SQL syntax en testBasisMViews
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdstruijk committed Nov 12, 2024
1 parent c7b4f86 commit c9e50d0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,6 @@ public void testBasisMViews() throws SQLException {
// bag 2
"mb_adres_bag",
"mb_adresseerbaar_object_geometrie_bag",
"mb_avg_koz_rechth_bag",
"mb_kad_onrrnd_zk_adres_bag",
"mb_koz_rechth_bag",
// bag 2 & brk 2 views in rsgb/public
"mb_kadastraleonroerendezakenmetadres",
"mb_onroerendezakenmetrechthebbenden",
Expand Down
10 changes: 5 additions & 5 deletions datamodel/upgrade_scripts/3.0.2-4.0.0/oracle/brk.sql
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ COMMENT ON COLUMN onroerendezaak.eindegeldigheid IS 'BRMO: metadata tbv archiver
COMMENT ON COLUMN recht.begingeldigheid IS 'BRMO: metadata tbv archivering, de toestandsdatum van het bericht.';

--https://b3partners.atlassian.net/browse/BRMO-332
ALTER TABLE IF EXISTS recht DROP CONSTRAINT IF EXISTS recht_isbestemdtot_fkey;
ALTER TABLE IF EXISTS recht DROP CONSTRAINT IF EXISTS recht_isontstaanuit_fkey;
ALTER TABLE IF EXISTS recht DROP CONSTRAINT IF EXISTS recht_isbetrokkenbij_fkey;
ALTER TABLE recht DROP CONSTRAINT recht_isbestemdtot_fkey;
ALTER TABLE recht DROP CONSTRAINT recht_isontstaanuit_fkey;
ALTER TABLE recht DROP CONSTRAINT recht_isbetrokkenbij_fkey;

--https://b3partners.atlassian.net/browse/BRMO-379
CREATE INDEX IF NOT EXISTS onroerendezaakfiliatie_betreft_idx ON onroerendezaakfiliatie USING btree (betreft);
CREATE INDEX IF NOT EXISTS onroerendezaakfiliatie_onroerendezaak_idx ON onroerendezaakfiliatie USING btree (onroerendezaak);
CREATE INDEX onroerendezaakfiliatie_betreft_idx ON onroerendezaakfiliatie (betreft);
CREATE INDEX onroerendezaakfiliatie_onroerendezaak_idx ON onroerendezaakfiliatie (onroerendezaak);

-- onderstaande dienen als laatste stappen van een upgrade uitgevoerd
INSERT INTO brmo_metadata (naam,waarde) SELECT 'upgrade_3.0.2_naar_4.0.0','vorige versie was ' || waarde FROM brmo_metadata WHERE naam='brmoversie';
Expand Down

0 comments on commit c9e50d0

Please sign in to comment.