#9004: 1.0 porting guide lists non-existant database backend functions
---------------------------+------------------------------------------------
Reporter: nicklane | Owner: nobody
Status: new | Milestone:
Component: Documentation | Version: SVN
Keywords: | Stage: Unreviewed
Has_patch: 0 |
---------------------------+------------------------------------------------
See: http://docs.djangoproject.com/en/dev/releases/1.0-porting-guide
/#database-backend-functions-have-been-renamed
Some of these have been removed (e.g. in r8296).
This ticket will need a proper patch, just noting these down here until I
have a chance to put one together. I'm not that familiar with the code
here, nor have I thoroughly investigated the code for each of these items
so anyone feel free to correct me.
{{{
``backend.get_limit_offset_sql``
``connection.ops.limit_offset_sql`` (removed?)
``backend.get_tablespace_sql``
``connection.ops.sql_for_tablespace``
``backend.get_query_set_class`` ``connection.ops.query_class``
``backend.OPERATOR_MAPPING`` ``connection.operators``
(removed?)
``backend.allows_group_by_ordinal``
``connection.features.allows_group_by_ordinal`` (removed)
``backend.allows_unique_and_pk``
``connection.features.allows_unique_and_pk`` (removed)
``backend.autoindexes_primary_keys``
``connection.features.autoindexes_primary_keys`` (removed)
``backend.needs_upper_for_iops``
``connection.features.needs_upper_for_iops`` (removed)
``backend.supports_constraints``
``connection.features.supports_constraints`` (removed)
``backend.supports_tablespaces``
``connection.features.supports_tablespaces`` (removed)
``backend.uses_case_insensitive_names``
``connection.features.uses_case_insensitive_names`` (removed)
``backend.uses_custom_queryset``
``connection.features.uses_custom_query_class``
}}}
--
Ticket URL: <http://code.djangoproject.com/ticket/9004>
Django Code <http://code.djangoproject.com/>
The web framework for perfectionists with deadlines
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---