Changes between Initial Version and Version 1 of Ticket #32505


Ignore:
Timestamp:
Mar 3, 2021, 3:23:49 PM (4 years ago)
Author:
James Lin
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32505 – Description

    initial v1  
    11Currently in django Query class, it is using `AND`  as default operation
    22
    3 ```
     3
     4{{{
    45def add_extra(self, select, select_params, where, params, tables, order_by):
    56    ...
     
    78        self.where.add(ExtraWhere(where, params), AND)
    89    ...
    9 ```
     10}}}
     11
     12
    1013
    1114We should be able to pass op argument so I can use OR operation
Back to Top