Changes between Initial Version and Version 1 of Ticket #32505
- Timestamp:
- Mar 3, 2021, 3:23:49 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32505 – Description
initial v1 1 1 Currently in django Query class, it is using `AND` as default operation 2 2 3 ``` 3 4 {{{ 4 5 def add_extra(self, select, select_params, where, params, tables, order_by): 5 6 ... … … 7 8 self.where.add(ExtraWhere(where, params), AND) 8 9 ... 9 ``` 10 }}} 11 12 10 13 11 14 We should be able to pass op argument so I can use OR operation