Changes between Initial Version and Version 1 of Ticket #25912, comment 6


Ignore:
Timestamp:
Dec 30, 2016, 2:09:57 PM (7 years ago)
Author:
Tim Graham

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25912, comment 6

    initial v1  
    11Hello,
    22In django/django/db/backends/oracle/features.py
    3 
     3{{{
    44supports_bitwise_or = False
    5 
     5}}}
    66In  django/django/db/backends/oracle/operations.py
    7 
     7{{{
    88def combine_expression(self, connector, sub_expressions):
    99....
    1010elif connector == '|':
    1111            raise NotImplementedError("Bit-wise or is not supported in Oracle.")
     12}}}
    1213Thank you.
Back to Top