forked from Ericsson/codechecker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[server] Workaround for SQLite limitation in severity change
In SQLite there is a setting named SQLITE_LIMIT_COMPOUND_SELECT which limits the maximal number of compound select statements. In changing checker severities, we have such an SQL statement of which the size is proportional to the number of checkers. If this limit is exceeded, then the query fails. The default limit is 500, so the workaround is to change severities in this big chunks.
- Loading branch information
Showing
3 changed files
with
76 additions
and
59 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
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
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