1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Removed the mysql_old backend. It smells bad and has no friends.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@7949 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick
2008-07-18 17:38:53 +00:00
parent d261c1d000
commit c681f4070c
10 changed files with 8 additions and 362 deletions

View File

@@ -25,7 +25,7 @@ from django.conf import settings
building_docs = getattr(settings, 'BUILDING_DOCS', False)
if building_docs or settings.DATABASE_ENGINE not in ('mysql', 'mysql_old'):
if building_docs or settings.DATABASE_ENGINE != 'mysql':
__test__['API_TESTS'] += """
# the default behavior is to autocommit after each save() action
>>> def create_a_reporter_then_fail(first, last):