Running a centos 7.0 docker container, Python is at version 2.7.5 and the sqlite3 version is:
Python 2.7.5 (default, Jun 17 2014, 18:11:42)
[GCC 4.8.2 20140120 (Red Hat 4.8.2-16)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
import sqlite3
sqlite3.sqlite_version
'3.7.17'
this is newer than the 3.7.16 required for direct support of right-nested joins so it seems likely that this rather complex pile of code is not being used anywhere, as SQLAlchemy only supports Python 2.7 and above. centos6 has only python 2.6 (not supported) and no Python 3.
Running a centos 7.0 docker container, Python is at version 2.7.5 and the sqlite3 version is:
Python 2.7.5 (default, Jun 17 2014, 18:11:42)
[GCC 4.8.2 20140120 (Red Hat 4.8.2-16)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
this is newer than the 3.7.16 required for direct support of right-nested joins so it seems likely that this rather complex pile of code is not being used anywhere, as SQLAlchemy only supports Python 2.7 and above. centos6 has only python 2.6 (not supported) and no Python 3.