QLeftOuterJoins

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
from django.db.models.query import Q, QAnd, QOr

class QLeftOuterJoins(Q):
    "Replaces all INNER JOINs with LEFT OUTER JOINs inside"
    def __init__(self, q):
        self.q = q

    def __and__(self, other):
        return QAnd(self, other)

    def __or__(self, other):
        return QOr(self, other)

    def get_sql(self, opts):
        joins, where, params = self.q.get_sql(opts)
        for join_name, join in joins.iteritems():
            joins[join_name] = (join[0], "LEFT OUTER JOIN", join[2])
        return joins, where, params

More like this

  1. Left Outer join Q object by karsu 5 years, 11 months ago
  2. More admin clock time increments by robharvey 6 years, 1 month ago
  3. Django cycle tag that doesn't continue where it left off by wilfred 4 months ago
  4. Hidden Date Display Widget for Admin by andrew.schoen 3 years, 10 months ago
  5. unique validation for ModelForm by whiskybar 5 years, 2 months ago

Comments

(Forgotten your password?)