forked from apache/airflow
-
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.
Check for minimum version of Sqlite (apache#13496)
Some users testing Airlfow 2.0 with sqlite noticed that for old versions of sqlite, Airflow does not run tasks and fails with 'sqlite3.OperationalError: near ",": syntax error' when running tasks. More details about it in apache#13397. Bisecting had shown that minimum supported version of sqlite is 3.15.0, therefore this PR adds checking if sqlite version is higher than that and fails hard if it is not. Documentation has been updated with minimum requirements, some inconsisttencies have been removed, also the minimum requirements for stable 2.0 version were moved to installation.rst because the requirements were never explicitely stated in the user-facing documentation.
- Loading branch information
Showing
3 changed files
with
36 additions
and
9 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