diff -r a80734fd9912 django/db/backends/__init__.py
a
|
b
|
|
45 | 45 | autoindexes_primary_keys = True |
46 | 46 | inline_fk_references = True |
47 | 47 | needs_datetime_string_cast = True |
48 | | needs_upper_for_iops = False |
49 | 48 | supports_constraints = True |
50 | 49 | supports_tablespaces = False |
51 | 50 | uses_case_insensitive_names = False |
diff -r a80734fd9912 django/db/backends/oracle/base.py
a
|
b
|
|
27 | 27 | allows_unique_and_pk = False # Suppress UNIQUE/PK for Oracle (ORA-02259) |
28 | 28 | empty_fetchmany_value = () |
29 | 29 | needs_datetime_string_cast = False |
30 | | needs_upper_for_iops = True |
31 | 30 | supports_tablespaces = True |
32 | 31 | uses_case_insensitive_names = True |
33 | 32 | uses_custom_query_class = True |