Opened 16 years ago

Closed 14 years ago

#9004 closed (wontfix)

1.0 porting guide lists non-existant database backend functions

Reported by: nicklane Owned by: nobody
Component: Documentation Version: dev
Severity: Keywords:
Cc: daemondazz Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

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``

Change History (5)

comment:2 by Jacob, 15 years ago

Triage Stage: UnreviewedAccepted

comment:3 by daemondazz, 15 years ago

Cc: da added

comment:4 by daemondazz, 15 years ago

Cc: daemondazz added; da removed

comment:5 by Adam Nelson, 14 years ago

Resolution: wontfix
Status: newclosed

It seems like this should be marked wontfix since not many people are migrating from 0.96 to 1.x any more and there seems to be no patch forthcoming. Feel free to undo the wontfix if there's a patch to be attached or if somebody feels like this is still important.

Note: See TracTickets for help on using tickets.
Back to Top