-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create 'lookup_oval_platform' database function
- Loading branch information
1 parent
2fe3894
commit 1022484
Showing
2 changed files
with
51 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
-- | ||
-- Copyright (c) 2024 SUSE LLC | ||
-- | ||
-- This software is licensed to you under the GNU General Public License, | ||
-- version 2 (GPLv2). There is NO WARRANTY for this software, express or | ||
-- implied, including the implied warranties of MERCHANTABILITY or FITNESS | ||
-- FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 | ||
-- along with this software; if not, see | ||
-- http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. | ||
-- | ||
-- Red Hat trademarks are not licensed under GPLv2. No permission is | ||
-- granted to use or replicate Red Hat trademarks that are incorporated | ||
-- in this software or its documentation. | ||
-- | ||
|
||
create or replace function | ||
lookup_oval_platform(platform_cpe_in in varchar) | ||
returns numeric | ||
as $$ | ||
declare | ||
platform_cpe_in_val numeric; | ||
begin | ||
if not exists(select c from suseOVALPlatform c where cpe = platform_cpe_in) then | ||
insert into suseovalplatform(id, cpe) | ||
values (nextval('suse_oval_platform_id_seq'), platform_cpe_in); | ||
end if; | ||
|
||
select id into platform_cpe_in_val FROM suseOVALPlatform WHERE cpe = platform_cpe_in; | ||
|
||
return platform_cpe_in_val; | ||
end; | ||
$$ language plpgsql; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters