Ticket #17644: ticket_17644.diff

File ticket_17644.diff, 15.2 KB (added by Anssi Kääriäinen, 12 years ago)
  • django/contrib/gis/db/models/sql/compiler.py

    diff --git a/django/contrib/gis/db/models/sql/compiler.py b/django/contrib/gis/db/models/sql/compiler.py
    index 07eea32..ca5a43a 100644
    a b  
    11from itertools import izip
    22from django.db.backends.util import truncate_name, typecast_timestamp
    33from django.db.models.sql import compiler
    4 from django.db.models.sql.constants import TABLE_NAME, MULTI
     4from django.db.models.sql.constants import MULTI
    55
    66SQLCompiler = compiler.SQLCompiler
    77
    class GeoSQLCompiler(compiler.SQLCompiler):  
    3535            for col, field in izip(self.query.select, self.query.select_fields):
    3636                if isinstance(col, (list, tuple)):
    3737                    alias, column = col
    38                     table = self.query.alias_map[alias][TABLE_NAME]
     38                    table = self.query.alias_map[alias].table_name
    3939                    if table in only_load and column not in only_load[table]:
    4040                        continue
    4141                    r = self.get_field_select(field, alias, column)
    class GeoSQLCompiler(compiler.SQLCompiler):  
    138138                # aliases will have already been set up in pre_sql_setup(), so
    139139                # we can save time here.
    140140                alias = self.query.included_inherited_models[model]
    141             table = self.query.alias_map[alias][TABLE_NAME]
     141            table = self.query.alias_map[alias].table_name
    142142            if table in only_load and field.column not in only_load[table]:
    143143                continue
    144144            if as_pairs:
  • django/db/models/sql/compiler.py

    diff --git a/django/db/models/sql/compiler.py b/django/db/models/sql/compiler.py
    index 6c516e2..f864fd7 100644
    a b class SQLCompiler(object):  
    188188            for col in self.query.select:
    189189                if isinstance(col, (list, tuple)):
    190190                    alias, column = col
    191                     table = self.query.alias_map[alias][TABLE_NAME]
     191                    table = self.query.alias_map[alias].table_name
    192192                    if table in only_load and column not in only_load[table]:
    193193                        continue
    194194                    r = '%s.%s' % (qn(alias), qn(column))
    class SQLCompiler(object):  
    289289                # aliases will have already been set up in pre_sql_setup(), so
    290290                # we can save time here.
    291291                alias = self.query.included_inherited_models[model]
    292             table = self.query.alias_map[alias][TABLE_NAME]
     292            table = self.query.alias_map[alias].table_name
    293293            if table in only_load and field.column not in only_load[table]:
    294294                continue
    295295            if as_pairs:
    class SQLCompiler(object):  
    432432            # Firstly, avoid infinite loops.
    433433            if not already_seen:
    434434                already_seen = set()
    435             join_tuple = tuple([self.query.alias_map[j][TABLE_NAME] for j in joins])
     435            join_tuple = tuple([self.query.alias_map[j].table_name for j in joins])
    436436            if join_tuple in already_seen:
    437437                raise FieldError('Infinite loop caused by ordering.')
    438438            already_seen.add(join_tuple)
    class SQLCompiler(object):  
    470470        # Ordering or distinct must not affect the returned set, and INNER
    471471        # JOINS for nullable fields could do this.
    472472        self.query.promote_alias_chain(joins,
    473             self.query.alias_map[joins[0]][JOIN_TYPE] == self.query.LOUTER)
     473            self.query.alias_map[joins[0]].join_type == self.query.LOUTER)
    474474        return field, col, alias, joins, opts
    475475
    476476    def _final_join_removal(self, col, alias):
    class SQLCompiler(object):  
    485485        if alias:
    486486            while 1:
    487487                join = self.query.alias_map[alias]
    488                 if col != join[RHS_JOIN_COL]:
     488                if col != join.rhs_join_col:
    489489                    break
    490490                self.query.unref_alias(alias)
    491                 alias = join[LHS_ALIAS]
    492                 col = join[LHS_JOIN_COL]
     491                alias = join.lhs_alias
     492                col = join.lhs_join_col
    493493        return col, alias
    494494
    495495    def get_from_clause(self):
    class SQLCompiler(object):  
    641641                    alias_chain.append(alias)
    642642                    for (dupe_opts, dupe_col) in dupe_set:
    643643                        self.query.update_dupe_avoidance(dupe_opts, dupe_col, alias)
    644                 if self.query.alias_map[root_alias][JOIN_TYPE] == self.query.LOUTER:
     644                if self.query.alias_map[root_alias].join_type == self.query.LOUTER:
    645645                    self.query.promote_alias_chain(alias_chain, True)
    646646            else:
    647647                alias = root_alias
    class SQLCompiler(object):  
    659659            columns, aliases = self.get_default_columns(start_alias=alias,
    660660                    opts=f.rel.to._meta, as_pairs=True)
    661661            self.query.related_select_cols.extend(columns)
    662             if self.query.alias_map[alias][JOIN_TYPE] == self.query.LOUTER:
     662            if self.query.alias_map[alias].join_type == self.query.LOUTER:
    663663                self.query.promote_alias_chain(aliases, True)
    664664            self.query.related_select_fields.extend(f.rel.to._meta.fields)
    665665            if restricted:
  • django/db/models/sql/constants.py

    diff --git a/django/db/models/sql/constants.py b/django/db/models/sql/constants.py
    index 63c704f..12c8aed 100644
    a b  
     1from collections import namedtuple
    12import re
    23
    34# Valid query types (a dictionary is used for speedy lookups).
    LOOKUP_SEP = '__'  
    1718# Constants to make looking up tuple values clearer.
    1819# Join lists (indexes into the tuples that are values in the alias_map
    1920# dictionary in the Query class).
    20 TABLE_NAME = 0
    21 RHS_ALIAS = 1
    22 JOIN_TYPE = 2
    23 LHS_ALIAS = 3
    24 LHS_JOIN_COL = 4
    25 RHS_JOIN_COL = 5
    26 NULLABLE = 6
     21JoinInfo = namedtuple('JoinInfo',
     22                      'table_name rhs_alias join_type lhs_alias '
     23                      'lhs_join_col rhs_join_col nullable')
    2724
    2825# How many results to expect from a cursor.execute call
    2926MULTI = 'multi'
  • django/db/models/sql/query.py

    diff --git a/django/db/models/sql/query.py b/django/db/models/sql/query.py
    index 780f93e..05ccbe2 100644
    a b class Query(object):  
    101101    def __init__(self, model, where=WhereNode):
    102102        self.model = model
    103103        self.alias_refcount = SortedDict()
    104         self.alias_map = {}     # Maps alias to join information
     104        # alias_map is the most important data structure regarding joins -
     105        # this is used for recording which joins there exists in the
     106        # query, and what type they are. The key is the alias of the
     107        # joined table (possibly the table name) and the value is JoinInfo
     108        # from constants.py.
     109        self.alias_map = {}
    105110        self.table_map = {}     # Maps table names to list of aliases.
    106111        self.join_map = {}
    107112        self.quote_cache = {}
    class Query(object):  
    688693
    689694        Returns True if the join was promoted by this call.
    690695        """
    691         if ((unconditional or self.alias_map[alias][NULLABLE]) and
    692                 self.alias_map[alias][JOIN_TYPE] != self.LOUTER):
    693             data = list(self.alias_map[alias])
    694             data[JOIN_TYPE] = self.LOUTER
    695             self.alias_map[alias] = tuple(data)
     696        if ((unconditional or self.alias_map[alias].nullable) and
     697                self.alias_map[alias].join_type != self.LOUTER):
     698            data = self.alias_map[alias]
     699            data = data._replace(join_type=self.LOUTER)
     700            self.alias_map[alias] = data
    696701            return True
    697702        return False
    698703
    class Query(object):  
    732737                continue
    733738            if (alias not in initial_refcounts or
    734739                    self.alias_refcount[alias] == initial_refcounts[alias]):
    735                 parent = self.alias_map[alias][LHS_ALIAS]
     740                parent = self.alias_map[alias].lhs_alias
    736741                must_promote = considered.get(parent, False)
    737742                promoted = self.promote_alias(alias, must_promote)
    738743                considered[alias] = must_promote or promoted
    class Query(object):  
    769774            aliases = tuple([change_map.get(a, a) for a in aliases])
    770775            self.join_map[k] = aliases
    771776        for old_alias, new_alias in change_map.iteritems():
    772             alias_data = list(self.alias_map[old_alias])
    773             alias_data[RHS_ALIAS] = new_alias
     777            alias_data = self.alias_map[old_alias]
     778            alias_data = alias_data._replace(rhs_alias=new_alias)
    774779            self.alias_refcount[new_alias] = self.alias_refcount[old_alias]
    775780            del self.alias_refcount[old_alias]
    776             self.alias_map[new_alias] = tuple(alias_data)
     781            self.alias_map[new_alias] = alias_data
    777782            del self.alias_map[old_alias]
    778783
    779             table_aliases = self.table_map[alias_data[TABLE_NAME]]
     784            table_aliases = self.table_map[alias_data.table_name]
    780785            for pos, alias in enumerate(table_aliases):
    781786                if alias == old_alias:
    782787                    table_aliases[pos] = new_alias
    class Query(object):  
    791796
    792797        # 3. Update any joins that refer to the old alias.
    793798        for alias, data in self.alias_map.iteritems():
    794             lhs = data[LHS_ALIAS]
     799            lhs = data.lhs_alias
    795800            if lhs in change_map:
    796                 data = list(data)
    797                 data[LHS_ALIAS] = change_map[lhs]
    798                 self.alias_map[alias] = tuple(data)
     801                data = data._replace(lhs_alias=change_map[lhs])
     802                self.alias_map[alias] = data
    799803
    800804    def bump_prefix(self, exceptions=()):
    801805        """
    class Query(object):  
    878882        """
    879883        lhs, table, lhs_col, col = connection
    880884        if lhs in self.alias_map:
    881             lhs_table = self.alias_map[lhs][TABLE_NAME]
     885            lhs_table = self.alias_map[lhs].table_name
    882886        else:
    883887            lhs_table = lhs
    884888
    class Query(object):  
    891895        if not always_create:
    892896            for alias in self.join_map.get(t_ident, ()):
    893897                if alias not in exclusions:
    894                     if lhs_table and not self.alias_refcount[self.alias_map[alias][LHS_ALIAS]]:
     898                    if lhs_table and not self.alias_refcount[self.alias_map[alias].lhs_alias]:
    895899                        # The LHS of this join tuple is no longer part of the
    896900                        # query, so skip this possibility.
    897901                        continue
    898                     if self.alias_map[alias][LHS_ALIAS] != lhs:
     902                    if self.alias_map[alias].lhs_alias != lhs:
    899903                        continue
    900904                    self.ref_alias(alias)
    901905                    if promote:
    class Query(object):  
    912916            join_type = self.LOUTER
    913917        else:
    914918            join_type = self.INNER
    915         join = (table, alias, join_type, lhs, lhs_col, col, nullable)
     919        join = JoinInfo(table, alias, join_type, lhs, lhs_col, col, nullable)
    916920        self.alias_map[alias] = join
    917921        if t_ident in self.join_map:
    918922            self.join_map[t_ident] += (alias,)
    class Query(object):  
    11521156                # also be promoted, regardless of whether they have been
    11531157                # promoted as a result of this pass through the tables.
    11541158                unconditional = (unconditional or
    1155                     self.alias_map[join][JOIN_TYPE] == self.LOUTER)
     1159                    self.alias_map[join].join_type == self.LOUTER)
    11561160                if join == table and self.alias_refcount[join] > 1:
    11571161                    # We have more than one reference to this join table.
    11581162                    # This means that we are dealing with two different query
    class Query(object):  
    11831187            if lookup_type != 'isnull':
    11841188                if len(join_list) > 1:
    11851189                    for alias in join_list:
    1186                         if self.alias_map[alias][JOIN_TYPE] == self.LOUTER:
    1187                             j_col = self.alias_map[alias][RHS_JOIN_COL]
     1190                        if self.alias_map[alias].join_type == self.LOUTER:
     1191                            j_col = self.alias_map[alias].rhs_join_col
    11881192                            entry = self.where_class()
    11891193                            entry.add(
    11901194                                (Constraint(alias, j_col, None), 'isnull', True),
    class Query(object):  
    15101514            join_list = join_list[:penultimate]
    15111515            final = penultimate
    15121516            penultimate = last.pop()
    1513             col = self.alias_map[extra[0]][LHS_JOIN_COL]
     1517            col = self.alias_map[extra[0]].lhs_join_col
    15141518            for alias in extra:
    15151519                self.unref_alias(alias)
    15161520        else:
    class Query(object):  
    15181522        alias = join_list[-1]
    15191523        while final > 1:
    15201524            join = self.alias_map[alias]
    1521             if (col != join[RHS_JOIN_COL] or join[JOIN_TYPE] != self.INNER or
     1525            if (col != join.rhs_join_col or join.join_type != self.INNER or
    15221526                    nonnull_check):
    15231527                break
    15241528            self.unref_alias(alias)
    1525             alias = join[LHS_ALIAS]
    1526             col = join[LHS_JOIN_COL]
     1529            alias = join.lhs_alias
     1530            col = join.lhs_join_col
    15271531            join_list.pop()
    15281532            final -= 1
    15291533            if final == penultimate:
    class Query(object):  
    16461650                col = target.column
    16471651                if len(joins) > 1:
    16481652                    join = self.alias_map[final_alias]
    1649                     if col == join[RHS_JOIN_COL]:
     1653                    if col == join.rhs_join_col:
    16501654                        self.unref_alias(final_alias)
    1651                         final_alias = join[LHS_ALIAS]
    1652                         col = join[LHS_JOIN_COL]
     1655                        final_alias = join.lhs_alias
     1656                        col = join.lhs_join_col
    16531657                        joins = joins[:-1]
    16541658                self.promote_alias_chain(joins[1:])
    16551659                self.select.append((final_alias, col))
    class Query(object):  
    19231927        alias = self.get_initial_alias()
    19241928        field, col, opts, joins, last, extra = self.setup_joins(
    19251929                start.split(LOOKUP_SEP), opts, alias, False)
    1926         select_col = self.alias_map[joins[1]][LHS_JOIN_COL]
     1930        select_col = self.alias_map[joins[1]].lhs_join_col
    19271931        select_alias = alias
    19281932
    19291933        # The call to setup_joins added an extra reference to everything in
    class Query(object):  
    19361940        # is *always* the same value as lhs).
    19371941        for alias in joins[1:]:
    19381942            join_info = self.alias_map[alias]
    1939             if (join_info[LHS_JOIN_COL] != select_col
    1940                     or join_info[JOIN_TYPE] != self.INNER):
     1943            if (join_info.lhs_join_col != select_col
     1944                    or join_info.join_type != self.INNER):
    19411945                break
    19421946            self.unref_alias(select_alias)
    1943             select_alias = join_info[RHS_ALIAS]
    1944             select_col = join_info[RHS_JOIN_COL]
     1947            select_alias = join_info.rhs_alias
     1948            select_col = join_info.rhs_join_col
    19451949        self.select = [(select_alias, select_col)]
    19461950        self.remove_inherited_models()
    19471951
Back to Top