From c24e387543a7fefaf8c6376cbbf79c0f13171621 Mon Sep 17 00:00:00 2001 From: Jeremy Long Date: Thu, 4 Jul 2024 09:25:07 -0400 Subject: [PATCH] docs: explain difference in case we update again --- core/src/main/resources/data/dbStatements_oracle.properties | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/main/resources/data/dbStatements_oracle.properties b/core/src/main/resources/data/dbStatements_oracle.properties index 864ac3dc860..ea99b352934 100644 --- a/core/src/main/resources/data/dbStatements_oracle.properties +++ b/core/src/main/resources/data/dbStatements_oracle.properties @@ -19,5 +19,6 @@ CLEANUP_ORPHANS=DELETE FROM cpeEntry WHERE id not in (SELECT CPEEntryId FROM sof UPDATE_ECOSYSTEM=UPDATE v_update_ecosystems SET entryEco=cachedEco WHERE entryEco IS NULL AND cachedEco <>'MULTIPLE' UPDATE_ECOSYSTEM2=UPDATE v_update_ecosystems SET entryEco = NULL WHERE cachedEco = 'MULTIPLE' AND entryEco IS NOT NULL +# The oracle call has one more `?` then other databases due to the `out` parameter UPDATE_VULNERABILITY={ call update_vulnerability(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) } MERGE_KNOWN_EXPLOITED={ CALL merge_knownexploited(?,?,?,?,?,?,?,?,?) }