Ticket #7319: t7319-r7670.diff

File t7319-r7670.diff, 971 bytes (added by Ramiro Morales, 16 years ago)

Trivial patch that deletes the needs_upper_for_iops database feature

  • django/db/backends/__init__.py

    diff -r a80734fd9912 django/db/backends/__init__.py
    a b  
    4545    autoindexes_primary_keys = True
    4646    inline_fk_references = True
    4747    needs_datetime_string_cast = True
    48     needs_upper_for_iops = False
    4948    supports_constraints = True
    5049    supports_tablespaces = False
    5150    uses_case_insensitive_names = False
  • django/db/backends/oracle/base.py

    diff -r a80734fd9912 django/db/backends/oracle/base.py
    a b  
    2727    allows_unique_and_pk = False        # Suppress UNIQUE/PK for Oracle (ORA-02259)
    2828    empty_fetchmany_value = ()
    2929    needs_datetime_string_cast = False
    30     needs_upper_for_iops = True
    3130    supports_tablespaces = True
    3231    uses_case_insensitive_names = True
    3332    uses_custom_query_class = True
Back to Top