Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix severity_in_level SQL function #1312

Merged
merged 2 commits into from
Oct 5, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Fixed
- Use GMP version with leading zero for feed dirs [#1287](https://github.com/greenbone/gvmd/pull/1287)
- Check db version before creating SQL functions [#1304](https://github.com/greenbone/gvmd/pull/1304)
- Fix severity_in_level SQL function [#1312](https://github.com/greenbone/gvmd/pull/1312)

### Removed
- Drop GMP scanners [#1269](https://github.com/greenbone/gvmd/pull/1269)
Expand Down
1 change: 0 additions & 1 deletion src/manage_pg.c
Original file line number Diff line number Diff line change
Expand Up @@ -1446,7 +1446,6 @@ manage_create_sql_functions ()
" WHEN 'high'"
" THEN $1 >= 7"
" AND $1 <= 10"
" AND $1 < 7"
" WHEN 'medium'"
" THEN $1 >= 4"
" AND $1 < 7"
Expand Down