1
0
mirror of https://github.com/django/django.git synced 2025-07-04 09:49:12 +00:00

boulder-oracle-sprint: Fixed autoindexes_primary_keys value for several

backends


git-svn-id: http://code.djangoproject.com/svn/django/branches/boulder-oracle-sprint@5026 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Boulder Sprinters 2007-04-18 22:37:22 +00:00
parent b38a73e01a
commit e076f10cb5
4 changed files with 4 additions and 4 deletions

View File

@ -90,7 +90,7 @@ class DatabaseWrapper(local):
allows_group_by_ordinal = True allows_group_by_ordinal = True
allows_unique_and_pk = True allows_unique_and_pk = True
autoindexes_primary_keys = False autoindexes_primary_keys = True
needs_datetime_string_cast = True needs_datetime_string_cast = True
needs_upper_for_iops = False needs_upper_for_iops = False
supports_constraints = True supports_constraints = True

View File

@ -106,7 +106,7 @@ class DatabaseWrapper(local):
allows_group_by_ordinal = True allows_group_by_ordinal = True
allows_unique_and_pk = True allows_unique_and_pk = True
autoindexes_primary_keys = False autoindexes_primary_keys = True
needs_datetime_string_cast = True needs_datetime_string_cast = True
needs_upper_for_iops = False needs_upper_for_iops = False
supports_constraints = True supports_constraints = True

View File

@ -74,7 +74,7 @@ class DatabaseWrapper(local):
allows_group_by_ordinal = True allows_group_by_ordinal = True
allows_unique_and_pk = True allows_unique_and_pk = True
autoindexes_primary_keys = False autoindexes_primary_keys = True
needs_datetime_string_cast = False needs_datetime_string_cast = False
needs_upper_for_iops = False needs_upper_for_iops = False
supports_constraints = True supports_constraints = True

View File

@ -101,7 +101,7 @@ class SQLiteCursorWrapper(Database.Cursor):
allows_group_by_ordinal = True allows_group_by_ordinal = True
allows_unique_and_pk = True allows_unique_and_pk = True
autoindexes_primary_keys = False autoindexes_primary_keys = True
needs_datetime_string_cast = True needs_datetime_string_cast = True
needs_upper_for_iops = False needs_upper_for_iops = False
supports_constraints = False supports_constraints = False