Changes between Initial Version and Version 1 of Ticket #25912, comment 6
- Timestamp:
- Dec 30, 2016, 2:09:57 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25912, comment 6
initial v1 1 1 Hello, 2 2 In django/django/db/backends/oracle/features.py 3 3 {{{ 4 4 supports_bitwise_or = False 5 5 }}} 6 6 In django/django/db/backends/oracle/operations.py 7 7 {{{ 8 8 def combine_expression(self, connector, sub_expressions): 9 9 .... 10 10 elif connector == '|': 11 11 raise NotImplementedError("Bit-wise or is not supported in Oracle.") 12 }}} 12 13 Thank you.