https://github.com/sqlancer/bugs
A list of bugs found by SQLancer
https://github.com/sqlancer/bugs
Last synced: 9 months ago
JSON representation
A list of bugs found by SQLancer
- Host: GitHub
- URL: https://github.com/sqlancer/bugs
- Owner: sqlancer
- Created: 2020-09-24T16:38:24.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-30T05:21:03.000Z (almost 2 years ago)
- Last Synced: 2025-04-01T22:38:35.018Z (10 months ago)
- Language: Python
- Homepage:
- Size: 217 KB
- Stars: 14
- Watchers: 2
- Forks: 7
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

This project aims to provide a basis to study (logic) bugs in DBMS. To this end, the repository stores a list of bugs found by SQLancer with additional metadata.
The main file is `bugs.json`. We use JSON as a format, because we expect it to be easy to manually edit, automatically process, and since we can obtain a meaningful diff output.
You can automatically derive a SQLite database from the JSON file using the following command:
```
./bugs.py export_database
```
In each PR, we automatically validate the JSON file. When changing the file or adding entries to it, be sure to locally check the file before committing it:
```
./bugs.py check
```
To format the JSON file as expected by the check command, you can use the following command:
```
./bugs.py format
```