django-tidb
django-tidb copied to clipboard
TiDB dialect for Django
This commit adds CI against TiDB 8.1.0 LTS because I want to see if django-tidb works with TiDB 8.1.0 LTS.
from django.core.exceptions import ImproperlyConfigured try: import MySQLdb as Database except ImportError as err: raise ImproperlyConfigured( 'Error loading MySQLdb module.\n' 'Did you install mysqlclient?' ) from err from django.db.backends.mysql.base import *...
This pull request updates to Use compatible release clause `~=` defined at PEP 440. I prefer this syntax to the current one. ### How it works ```python % python -V...
### Why this feature is requested All of TiDB Self-Hosted, TiDB Dedicated and TiDB Severless support TTL feature, I wish django-tidb supports to create table with TTL enabled. https://docs.pingcap.com/tidb/stable/release-6.5.0 >...