Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
"""
|
|
|
|
Create SQL statements for QuerySets.
|
|
|
|
|
|
|
|
The code in here encapsulates all of the SQL construction so that QuerySets
|
|
|
|
themselves do not have to (and could be backed by things other than SQL
|
|
|
|
databases). The abstraction barrier only works one way: this module has to know
|
|
|
|
all about the internals of models in order to get the information it needs.
|
|
|
|
"""
|
|
|
|
|
2014-08-17 22:21:48 +08:00
|
|
|
from collections import Mapping, OrderedDict
|
2011-03-28 10:11:19 +08:00
|
|
|
import copy
|
2013-12-18 23:59:08 +08:00
|
|
|
import warnings
|
2011-09-10 03:22:28 +08:00
|
|
|
|
2014-02-27 05:48:20 +08:00
|
|
|
from django.core.exceptions import FieldError
|
2009-12-22 23:18:51 +08:00
|
|
|
from django.db import connections, DEFAULT_DB_ALIAS
|
2012-09-09 07:51:36 +08:00
|
|
|
from django.db.models.constants import LOOKUP_SEP
|
2013-12-25 21:13:18 +08:00
|
|
|
from django.db.models.expressions import Col, Ref
|
2008-06-29 17:40:17 +08:00
|
|
|
from django.db.models.fields import FieldDoesNotExist
|
2013-12-25 21:13:18 +08:00
|
|
|
from django.db.models.query_utils import Q, refs_aggregate
|
2012-12-17 23:09:07 +08:00
|
|
|
from django.db.models.related import PathInfo
|
2013-12-25 21:13:18 +08:00
|
|
|
from django.db.models.aggregates import Count
|
2012-09-09 07:51:36 +08:00
|
|
|
from django.db.models.sql.constants import (QUERY_TERMS, ORDER_DIR, SINGLE,
|
2014-11-17 16:26:10 +08:00
|
|
|
ORDER_PATTERN, SelectInfo, INNER, LOUTER)
|
|
|
|
from django.db.models.sql.datastructures import (
|
|
|
|
EmptyResultSet, Empty, MultiJoin, Join, BaseTable)
|
2010-02-23 12:39:39 +08:00
|
|
|
from django.db.models.sql.where import (WhereNode, Constraint, EverythingNode,
|
2012-10-24 05:04:37 +08:00
|
|
|
ExtraWhere, AND, OR, EmptyWhere)
|
2014-02-27 05:48:20 +08:00
|
|
|
from django.utils import six
|
2013-12-25 21:13:18 +08:00
|
|
|
from django.utils.deprecation import RemovedInDjango19Warning, RemovedInDjango20Warning
|
2014-02-27 05:48:20 +08:00
|
|
|
from django.utils.encoding import force_text
|
|
|
|
from django.utils.tree import Node
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
2009-12-22 23:18:51 +08:00
|
|
|
__all__ = ['Query', 'RawQuery']
|
2009-12-20 10:46:58 +08:00
|
|
|
|
2012-09-07 22:58:17 +08:00
|
|
|
|
2009-12-20 10:46:58 +08:00
|
|
|
class RawQuery(object):
|
|
|
|
"""
|
|
|
|
A single raw SQL query
|
|
|
|
"""
|
|
|
|
|
2009-12-22 23:18:51 +08:00
|
|
|
def __init__(self, sql, using, params=None):
|
2009-12-20 10:46:58 +08:00
|
|
|
self.params = params or ()
|
|
|
|
self.sql = sql
|
2009-12-22 23:18:51 +08:00
|
|
|
self.using = using
|
2009-12-20 10:46:58 +08:00
|
|
|
self.cursor = None
|
|
|
|
|
2010-04-02 22:44:16 +08:00
|
|
|
# Mirror some properties of a normal query so that
|
|
|
|
# the compiler can be used to process results.
|
|
|
|
self.low_mark, self.high_mark = 0, None # Used for offset/limit
|
|
|
|
self.extra_select = {}
|
2013-12-25 21:13:18 +08:00
|
|
|
self.annotation_select = {}
|
2010-04-02 22:44:16 +08:00
|
|
|
|
2009-12-22 23:18:51 +08:00
|
|
|
def clone(self, using):
|
|
|
|
return RawQuery(self.sql, using, params=self.params)
|
|
|
|
|
2009-12-20 10:46:58 +08:00
|
|
|
def get_columns(self):
|
|
|
|
if self.cursor is None:
|
|
|
|
self._execute_query()
|
2013-12-13 14:04:28 +08:00
|
|
|
converter = connections[self.using].introspection.column_name_converter
|
2009-12-23 05:05:15 +08:00
|
|
|
return [converter(column_meta[0])
|
|
|
|
for column_meta in self.cursor.description]
|
2009-12-20 10:46:58 +08:00
|
|
|
|
|
|
|
def __iter__(self):
|
|
|
|
# Always execute a new query for a new iterator.
|
2010-02-23 13:22:12 +08:00
|
|
|
# This could be optimized with a cache at the expense of RAM.
|
2009-12-20 10:46:58 +08:00
|
|
|
self._execute_query()
|
2010-04-15 21:01:51 +08:00
|
|
|
if not connections[self.using].features.can_use_chunked_reads:
|
|
|
|
# If the database can't use chunked reads we need to make sure we
|
|
|
|
# evaluate the entire query up front.
|
|
|
|
result = list(self.cursor)
|
|
|
|
else:
|
|
|
|
result = self.cursor
|
|
|
|
return iter(result)
|
2009-12-20 10:46:58 +08:00
|
|
|
|
|
|
|
def __repr__(self):
|
2014-08-17 22:21:48 +08:00
|
|
|
return "<RawQuery: %s>" % self
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
_type = dict if isinstance(self.params, Mapping) else tuple
|
|
|
|
return self.sql % _type(self.params)
|
2009-12-20 10:46:58 +08:00
|
|
|
|
|
|
|
def _execute_query(self):
|
2009-12-22 23:18:51 +08:00
|
|
|
self.cursor = connections[self.using].cursor()
|
2009-12-20 10:46:58 +08:00
|
|
|
self.cursor.execute(self.sql, self.params)
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
2009-12-22 23:18:51 +08:00
|
|
|
|
|
|
|
class Query(object):
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
"""
|
|
|
|
A single SQL query.
|
|
|
|
"""
|
|
|
|
|
|
|
|
alias_prefix = 'T'
|
2013-08-13 19:11:52 +08:00
|
|
|
subq_aliases = frozenset([alias_prefix])
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
query_terms = QUERY_TERMS
|
|
|
|
|
2009-12-22 23:18:51 +08:00
|
|
|
compiler = 'SQLCompiler'
|
|
|
|
|
|
|
|
def __init__(self, model, where=WhereNode):
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
self.model = model
|
2012-11-11 07:59:24 +08:00
|
|
|
self.alias_refcount = {}
|
2012-04-30 06:50:48 +08:00
|
|
|
# alias_map is the most important data structure regarding joins.
|
|
|
|
# It's used for recording which joins exist in the query and what
|
2014-11-17 16:26:10 +08:00
|
|
|
# types they are. The key is the alias of the joined table (possibly
|
|
|
|
# the table name) and the value is a Join-like object (see
|
|
|
|
# sql.datastructures.Join for more information).
|
2012-04-30 06:50:48 +08:00
|
|
|
self.alias_map = {}
|
2014-10-07 21:07:46 +08:00
|
|
|
# Sometimes the query contains references to aliases in outer queries (as
|
|
|
|
# a result of split_exclude). Correct alias quoting needs to know these
|
|
|
|
# aliases too.
|
|
|
|
self.external_aliases = set()
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
self.table_map = {} # Maps table names to list of aliases.
|
|
|
|
self.default_cols = True
|
|
|
|
self.default_ordering = True
|
|
|
|
self.standard_ordering = True
|
2008-08-23 06:00:28 +08:00
|
|
|
self.used_aliases = set()
|
|
|
|
self.filter_is_sticky = False
|
2009-03-04 13:34:01 +08:00
|
|
|
self.included_inherited_models = {}
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
2012-08-25 21:33:07 +08:00
|
|
|
# SQL-related attributes
|
2012-10-26 01:57:32 +08:00
|
|
|
# Select and related select clauses as SelectInfo instances.
|
|
|
|
# The select is used for cases where we want to set up the select
|
|
|
|
# clause to contain other than default fields (values(), annotate(),
|
|
|
|
# subqueries...)
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
self.select = []
|
2012-10-26 01:57:32 +08:00
|
|
|
# The related_select_cols is used for columns needed for
|
2014-02-26 03:29:15 +08:00
|
|
|
# select_related - this is populated in the compile stage.
|
2012-10-26 01:57:32 +08:00
|
|
|
self.related_select_cols = []
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
self.tables = [] # Aliases in the order they are created.
|
|
|
|
self.where = where()
|
|
|
|
self.where_class = where
|
2009-02-16 20:29:31 +08:00
|
|
|
self.group_by = None
|
2009-01-05 19:47:14 +08:00
|
|
|
self.having = where()
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
self.order_by = []
|
|
|
|
self.low_mark, self.high_mark = 0, None # Used for offset/limit
|
|
|
|
self.distinct = False
|
2011-12-23 04:42:40 +08:00
|
|
|
self.distinct_fields = []
|
2011-04-21 04:42:07 +08:00
|
|
|
self.select_for_update = False
|
|
|
|
self.select_for_update_nowait = False
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
self.select_related = False
|
|
|
|
|
2013-12-25 21:13:18 +08:00
|
|
|
# SQL annotation-related attributes
|
|
|
|
# The _annotations will be an OrderedDict when used. Due to the cost
|
2013-08-21 19:25:19 +08:00
|
|
|
# of creating OrderedDict this attribute is created lazily (in
|
2013-12-25 21:13:18 +08:00
|
|
|
# self.annotations property).
|
|
|
|
self._annotations = None # Maps alias -> Annotation Expression
|
|
|
|
self.annotation_select_mask = None
|
|
|
|
self._annotation_select_cache = None
|
2009-01-15 19:06:34 +08:00
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
# Arbitrary maximum limit for select_related. Prevents infinite
|
|
|
|
# recursion. Can be changed by the depth parameter to select_related().
|
|
|
|
self.max_depth = 5
|
|
|
|
|
|
|
|
# These are for extensions. The contents are more or less appended
|
|
|
|
# verbatim to the appropriate clause.
|
2013-08-21 19:25:19 +08:00
|
|
|
# The _extra attribute is an OrderedDict, lazily created similarly to
|
2013-12-25 21:13:18 +08:00
|
|
|
# .annotations
|
2013-08-21 19:25:19 +08:00
|
|
|
self._extra = None # Maps col_alias -> (col_sql, params).
|
2009-04-30 23:40:09 +08:00
|
|
|
self.extra_select_mask = None
|
|
|
|
self._extra_select_cache = None
|
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
self.extra_tables = ()
|
|
|
|
self.extra_order_by = ()
|
|
|
|
|
2009-03-19 17:06:04 +08:00
|
|
|
# A tuple that is a set of model field names and either True, if these
|
|
|
|
# are the fields to defer, or False if these are the only fields to
|
|
|
|
# load.
|
|
|
|
self.deferred_loading = (set(), True)
|
|
|
|
|
2013-08-21 19:25:19 +08:00
|
|
|
@property
|
|
|
|
def extra(self):
|
|
|
|
if self._extra is None:
|
|
|
|
self._extra = OrderedDict()
|
|
|
|
return self._extra
|
|
|
|
|
2013-12-25 21:13:18 +08:00
|
|
|
@property
|
|
|
|
def annotations(self):
|
|
|
|
if self._annotations is None:
|
|
|
|
self._annotations = OrderedDict()
|
|
|
|
return self._annotations
|
|
|
|
|
2013-08-21 19:25:19 +08:00
|
|
|
@property
|
|
|
|
def aggregates(self):
|
2013-12-25 21:13:18 +08:00
|
|
|
warnings.warn(
|
|
|
|
"The aggregates property is deprecated. Use annotations instead.",
|
|
|
|
RemovedInDjango20Warning, stacklevel=2)
|
|
|
|
return self.annotations
|
2013-08-21 19:25:19 +08:00
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
def __str__(self):
|
|
|
|
"""
|
|
|
|
Returns the query as a string of SQL with the parameter values
|
2011-08-23 11:38:28 +08:00
|
|
|
substituted in (use sql_with_params() to see the unsubstituted string).
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
|
|
|
Parameter values won't necessarily be quoted correctly, since that is
|
|
|
|
done by the database interface at execution time.
|
|
|
|
"""
|
2011-08-23 11:38:28 +08:00
|
|
|
sql, params = self.sql_with_params()
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
return sql % params
|
|
|
|
|
2011-08-23 11:38:28 +08:00
|
|
|
def sql_with_params(self):
|
|
|
|
"""
|
|
|
|
Returns the query as an SQL string and the parameters that will be
|
2014-04-27 01:18:45 +08:00
|
|
|
substituted into the query.
|
2011-08-23 11:38:28 +08:00
|
|
|
"""
|
|
|
|
return self.get_compiler(DEFAULT_DB_ALIAS).as_sql()
|
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
def __deepcopy__(self, memo):
|
2010-03-07 15:11:22 +08:00
|
|
|
result = self.clone(memo=memo)
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
memo[id(self)] = result
|
|
|
|
return result
|
|
|
|
|
2013-12-25 21:13:18 +08:00
|
|
|
def _prepare(self):
|
2009-12-22 23:18:51 +08:00
|
|
|
return self
|
|
|
|
|
|
|
|
def get_compiler(self, using=None, connection=None):
|
|
|
|
if using is None and connection is None:
|
|
|
|
raise ValueError("Need either using or connection")
|
|
|
|
if using:
|
|
|
|
connection = connections[using]
|
2010-04-02 00:48:16 +08:00
|
|
|
|
|
|
|
# Check that the compiler will be able to execute the query
|
2013-12-25 21:13:18 +08:00
|
|
|
for alias, annotation in self.annotation_select.items():
|
|
|
|
connection.ops.check_aggregate_support(annotation)
|
2010-04-02 00:48:16 +08:00
|
|
|
|
2009-12-22 23:18:51 +08:00
|
|
|
return connection.ops.compiler(self.compiler)(self, connection, using)
|
2008-04-28 22:14:41 +08:00
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
def get_meta(self):
|
|
|
|
"""
|
|
|
|
Returns the Options instance (the model._meta) from which to start
|
2008-12-08 10:39:51 +08:00
|
|
|
processing. Normally, this is self.model._meta, but it can be changed
|
|
|
|
by subclasses.
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
"""
|
|
|
|
return self.model._meta
|
|
|
|
|
2010-03-07 15:11:22 +08:00
|
|
|
def clone(self, klass=None, memo=None, **kwargs):
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
"""
|
|
|
|
Creates a copy of the current instance. The 'kwargs' parameter can be
|
|
|
|
used by clients to update attributes after copying has taken place.
|
|
|
|
"""
|
|
|
|
obj = Empty()
|
|
|
|
obj.__class__ = klass or self.__class__
|
|
|
|
obj.model = self.model
|
|
|
|
obj.alias_refcount = self.alias_refcount.copy()
|
|
|
|
obj.alias_map = self.alias_map.copy()
|
2014-10-07 21:07:46 +08:00
|
|
|
obj.external_aliases = self.external_aliases.copy()
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
obj.table_map = self.table_map.copy()
|
|
|
|
obj.default_cols = self.default_cols
|
|
|
|
obj.default_ordering = self.default_ordering
|
|
|
|
obj.standard_ordering = self.standard_ordering
|
2009-03-04 13:34:01 +08:00
|
|
|
obj.included_inherited_models = self.included_inherited_models.copy()
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
obj.select = self.select[:]
|
2012-10-26 01:57:32 +08:00
|
|
|
obj.related_select_cols = []
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
obj.tables = self.tables[:]
|
2012-06-02 09:13:36 +08:00
|
|
|
obj.where = self.where.clone()
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
obj.where_class = self.where_class
|
2009-02-16 20:29:31 +08:00
|
|
|
if self.group_by is None:
|
|
|
|
obj.group_by = None
|
|
|
|
else:
|
|
|
|
obj.group_by = self.group_by[:]
|
2012-06-02 09:13:36 +08:00
|
|
|
obj.having = self.having.clone()
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
obj.order_by = self.order_by[:]
|
|
|
|
obj.low_mark, obj.high_mark = self.low_mark, self.high_mark
|
|
|
|
obj.distinct = self.distinct
|
2011-12-23 04:42:40 +08:00
|
|
|
obj.distinct_fields = self.distinct_fields[:]
|
2011-04-21 04:42:07 +08:00
|
|
|
obj.select_for_update = self.select_for_update
|
|
|
|
obj.select_for_update_nowait = self.select_for_update_nowait
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
obj.select_related = self.select_related
|
2012-06-02 09:13:36 +08:00
|
|
|
obj.related_select_cols = []
|
2013-12-25 21:13:18 +08:00
|
|
|
obj._annotations = self._annotations.copy() if self._annotations is not None else None
|
|
|
|
if self.annotation_select_mask is None:
|
|
|
|
obj.annotation_select_mask = None
|
2009-02-23 22:47:59 +08:00
|
|
|
else:
|
2013-12-25 21:13:18 +08:00
|
|
|
obj.annotation_select_mask = self.annotation_select_mask.copy()
|
|
|
|
# _annotation_select_cache cannot be copied, as doing so breaks the
|
|
|
|
# (necessary) state in which both annotations and
|
|
|
|
# _annotation_select_cache point to the same underlying objects.
|
2010-03-22 04:47:52 +08:00
|
|
|
# It will get re-populated in the cloned queryset the next time it's
|
|
|
|
# used.
|
2013-12-25 21:13:18 +08:00
|
|
|
obj._annotation_select_cache = None
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
obj.max_depth = self.max_depth
|
2013-08-21 19:25:19 +08:00
|
|
|
obj._extra = self._extra.copy() if self._extra is not None else None
|
2009-04-30 23:40:09 +08:00
|
|
|
if self.extra_select_mask is None:
|
|
|
|
obj.extra_select_mask = None
|
|
|
|
else:
|
|
|
|
obj.extra_select_mask = self.extra_select_mask.copy()
|
|
|
|
if self._extra_select_cache is None:
|
|
|
|
obj._extra_select_cache = None
|
|
|
|
else:
|
|
|
|
obj._extra_select_cache = self._extra_select_cache.copy()
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
obj.extra_tables = self.extra_tables
|
|
|
|
obj.extra_order_by = self.extra_order_by
|
2012-06-02 09:13:36 +08:00
|
|
|
obj.deferred_loading = copy.copy(self.deferred_loading[0]), self.deferred_loading[1]
|
2008-08-23 06:00:28 +08:00
|
|
|
if self.filter_is_sticky and self.used_aliases:
|
|
|
|
obj.used_aliases = self.used_aliases.copy()
|
|
|
|
else:
|
|
|
|
obj.used_aliases = set()
|
|
|
|
obj.filter_is_sticky = False
|
2013-08-13 19:11:52 +08:00
|
|
|
if 'alias_prefix' in self.__dict__:
|
|
|
|
obj.alias_prefix = self.alias_prefix
|
|
|
|
if 'subq_aliases' in self.__dict__:
|
|
|
|
obj.subq_aliases = self.subq_aliases.copy()
|
2011-12-23 04:42:40 +08:00
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
obj.__dict__.update(kwargs)
|
|
|
|
if hasattr(obj, '_setup_query'):
|
|
|
|
obj._setup_query()
|
|
|
|
return obj
|
|
|
|
|
2014-10-07 21:07:46 +08:00
|
|
|
def relabeled_clone(self, change_map):
|
|
|
|
clone = self.clone()
|
|
|
|
clone.change_aliases(change_map)
|
|
|
|
return clone
|
|
|
|
|
2014-11-20 20:30:25 +08:00
|
|
|
def rewrite_cols(self, annotation, col_cnt):
|
|
|
|
# We must make sure the inner query has the referred columns in it.
|
|
|
|
# If we are aggregating over an annotation, then Django uses Ref()
|
|
|
|
# instances to note this. However, if we are annotating over a column
|
|
|
|
# of a related model, then it might be that column isn't part of the
|
|
|
|
# SELECT clause of the inner query, and we must manually make sure
|
|
|
|
# the column is selected. An example case is:
|
|
|
|
# .aggregate(Sum('author__awards'))
|
|
|
|
# Resolving this expression results in a join to author, but there
|
|
|
|
# is no guarantee the awards column of author is in the select clause
|
|
|
|
# of the query. Thus we must manually add the column to the inner
|
|
|
|
# query.
|
|
|
|
orig_exprs = annotation.get_source_expressions()
|
|
|
|
new_exprs = []
|
|
|
|
for expr in orig_exprs:
|
|
|
|
if isinstance(expr, Ref):
|
|
|
|
# Its already a Ref to subquery (see resolve_ref() for
|
|
|
|
# details)
|
|
|
|
new_exprs.append(expr)
|
|
|
|
elif isinstance(expr, Col):
|
|
|
|
# Reference to column. Make sure the referenced column
|
|
|
|
# is selected.
|
|
|
|
col_cnt += 1
|
|
|
|
col_alias = '__col%d' % col_cnt
|
|
|
|
self.annotation_select[col_alias] = expr
|
|
|
|
self.append_annotation_mask([col_alias])
|
|
|
|
new_exprs.append(Ref(col_alias, expr))
|
|
|
|
else:
|
|
|
|
# Some other expression not referencing database values
|
|
|
|
# directly. Its subexpression might contain Cols.
|
|
|
|
new_expr, col_cnt = self.rewrite_cols(expr, col_cnt)
|
|
|
|
new_exprs.append(new_expr)
|
|
|
|
annotation.set_source_expressions(new_exprs)
|
|
|
|
return annotation, col_cnt
|
|
|
|
|
2014-11-20 18:35:56 +08:00
|
|
|
def get_aggregation(self, using, added_aggregate_names):
|
2009-01-15 19:06:34 +08:00
|
|
|
"""
|
|
|
|
Returns the dictionary with the values of the existing aggregations.
|
|
|
|
"""
|
2013-12-25 21:13:18 +08:00
|
|
|
if not self.annotation_select:
|
2009-01-15 19:06:34 +08:00
|
|
|
return {}
|
2014-11-20 18:35:56 +08:00
|
|
|
has_limit = self.low_mark != 0 or self.high_mark is not None
|
|
|
|
has_existing_annotations = any(
|
2013-12-25 21:13:18 +08:00
|
|
|
annotation for alias, annotation
|
2014-11-20 18:35:56 +08:00
|
|
|
in self.annotations.items()
|
|
|
|
if alias not in added_aggregate_names
|
|
|
|
)
|
|
|
|
# Decide if we need to use a subquery.
|
|
|
|
#
|
|
|
|
# Existing annotations would cause incorrect results as get_aggregation()
|
|
|
|
# must produce just one result and thus must not use GROUP BY. But we
|
|
|
|
# aren't smart enough to remove the existing annotations from the
|
|
|
|
# query, so those would force us to use GROUP BY.
|
|
|
|
#
|
|
|
|
# If the query has limit or distinct, then those operations must be
|
|
|
|
# done in a subquery so that we are aggregating on the limit and/or
|
|
|
|
# distinct results instead of applying the distinct and limit after the
|
|
|
|
# aggregation.
|
|
|
|
if (self.group_by or has_limit or has_existing_annotations or self.distinct):
|
2010-11-17 10:57:14 +08:00
|
|
|
from django.db.models.sql.subqueries import AggregateQuery
|
2013-12-25 21:13:18 +08:00
|
|
|
outer_query = AggregateQuery(self.model)
|
|
|
|
inner_query = self.clone()
|
2014-11-20 18:35:56 +08:00
|
|
|
if not has_limit and not self.distinct_fields:
|
2013-12-25 21:13:18 +08:00
|
|
|
inner_query.clear_ordering(True)
|
|
|
|
inner_query.select_for_update = False
|
|
|
|
inner_query.select_related = False
|
|
|
|
inner_query.related_select_cols = []
|
|
|
|
|
2014-12-07 05:00:09 +08:00
|
|
|
relabels = {t: 'subquery' for t in inner_query.tables}
|
2013-12-25 21:13:18 +08:00
|
|
|
relabels[None] = 'subquery'
|
2009-01-15 19:06:34 +08:00
|
|
|
# Remove any aggregates marked for reduction from the subquery
|
|
|
|
# and move them to the outer AggregateQuery.
|
2014-11-20 20:30:25 +08:00
|
|
|
col_cnt = 0
|
|
|
|
for alias, expression in inner_query.annotation_select.items():
|
|
|
|
if expression.is_summary:
|
|
|
|
expression, col_cnt = inner_query.rewrite_cols(expression, col_cnt)
|
|
|
|
outer_query.annotations[alias] = expression.relabeled_clone(relabels)
|
2013-12-25 21:13:18 +08:00
|
|
|
del inner_query.annotation_select[alias]
|
2010-11-17 10:57:14 +08:00
|
|
|
try:
|
2013-12-25 21:13:18 +08:00
|
|
|
outer_query.add_subquery(inner_query, using)
|
2010-11-17 10:57:14 +08:00
|
|
|
except EmptyResultSet:
|
2014-12-07 05:00:09 +08:00
|
|
|
return {
|
|
|
|
alias: None
|
2013-12-25 21:13:18 +08:00
|
|
|
for alias in outer_query.annotation_select
|
2014-12-07 05:00:09 +08:00
|
|
|
}
|
2009-01-15 19:06:34 +08:00
|
|
|
else:
|
2013-12-25 21:13:18 +08:00
|
|
|
outer_query = self
|
2009-01-15 19:06:34 +08:00
|
|
|
self.select = []
|
|
|
|
self.default_cols = False
|
2013-08-21 19:25:19 +08:00
|
|
|
self._extra = {}
|
2009-03-04 13:34:01 +08:00
|
|
|
self.remove_inherited_models()
|
2009-01-15 19:06:34 +08:00
|
|
|
|
2013-12-25 21:13:18 +08:00
|
|
|
outer_query.clear_ordering(True)
|
|
|
|
outer_query.clear_limits()
|
|
|
|
outer_query.select_for_update = False
|
|
|
|
outer_query.select_related = False
|
|
|
|
outer_query.related_select_cols = []
|
|
|
|
compiler = outer_query.get_compiler(using)
|
|
|
|
result = compiler.execute_sql(SINGLE)
|
2009-01-23 19:03:48 +08:00
|
|
|
if result is None:
|
2013-12-25 21:13:18 +08:00
|
|
|
result = [None for q in outer_query.annotation_select.items()]
|
|
|
|
|
|
|
|
fields = [annotation.output_field
|
|
|
|
for alias, annotation in outer_query.annotation_select.items()]
|
|
|
|
converters = compiler.get_converters(fields)
|
|
|
|
for position, (alias, annotation) in enumerate(outer_query.annotation_select.items()):
|
|
|
|
if position in converters:
|
|
|
|
converters[position][1].insert(0, annotation.convert_value)
|
|
|
|
else:
|
|
|
|
converters[position] = ([], [annotation.convert_value], annotation.output_field)
|
|
|
|
result = compiler.apply_converters(result, converters)
|
2009-01-23 19:03:48 +08:00
|
|
|
|
2014-12-07 05:00:09 +08:00
|
|
|
return {
|
|
|
|
alias: val
|
2013-12-25 21:13:18 +08:00
|
|
|
for (alias, annotation), val
|
|
|
|
in zip(outer_query.annotation_select.items(), result)
|
2014-12-07 05:00:09 +08:00
|
|
|
}
|
2009-01-15 19:06:34 +08:00
|
|
|
|
2009-12-22 23:18:51 +08:00
|
|
|
def get_count(self, using):
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
"""
|
|
|
|
Performs a COUNT() query using the current filter constraints.
|
|
|
|
"""
|
|
|
|
obj = self.clone()
|
2014-11-20 18:35:56 +08:00
|
|
|
obj.add_annotation(Count('*'), alias='__count', is_summary=True)
|
|
|
|
number = obj.get_aggregation(using, ['__count'])['__count']
|
|
|
|
if number is None:
|
|
|
|
number = 0
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
return number
|
|
|
|
|
2013-10-09 20:29:14 +08:00
|
|
|
def has_filters(self):
|
|
|
|
return self.where or self.having
|
|
|
|
|
2009-12-22 23:18:51 +08:00
|
|
|
def has_results(self, using):
|
2009-10-24 08:28:39 +08:00
|
|
|
q = self.clone()
|
2013-10-06 02:40:36 +08:00
|
|
|
if not q.distinct:
|
|
|
|
q.clear_select_clause()
|
2010-03-20 18:37:57 +08:00
|
|
|
q.clear_ordering(True)
|
2009-10-26 00:32:07 +08:00
|
|
|
q.set_limits(high=1)
|
2009-12-22 23:18:51 +08:00
|
|
|
compiler = q.get_compiler(using=using)
|
2013-07-08 23:05:08 +08:00
|
|
|
return compiler.has_results()
|
2009-01-05 19:47:48 +08:00
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
def combine(self, rhs, connector):
|
|
|
|
"""
|
|
|
|
Merge the 'rhs' query into the current one (with any 'rhs' effects
|
|
|
|
being applied *after* (that is, "to the right of") anything in the
|
|
|
|
current query. 'rhs' is not modified during a call to this function.
|
|
|
|
|
|
|
|
The 'connector' parameter describes how to connect filters from the
|
|
|
|
'rhs' query.
|
|
|
|
"""
|
|
|
|
assert self.model == rhs.model, \
|
2013-12-13 04:23:24 +08:00
|
|
|
"Cannot combine queries on two different base models."
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
assert self.can_filter(), \
|
2013-12-13 04:23:24 +08:00
|
|
|
"Cannot combine queries once a slice has been taken."
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
assert self.distinct == rhs.distinct, \
|
|
|
|
"Cannot combine a unique query with a non-unique query."
|
2011-12-23 04:42:40 +08:00
|
|
|
assert self.distinct_fields == rhs.distinct_fields, \
|
|
|
|
"Cannot combine queries with different distinct fields."
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
2009-03-04 13:34:01 +08:00
|
|
|
self.remove_inherited_models()
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
# Work out how to relabel the rhs aliases, if necessary.
|
|
|
|
change_map = {}
|
|
|
|
conjunction = (connector == AND)
|
2012-08-11 03:00:21 +08:00
|
|
|
|
|
|
|
# Determine which existing joins can be reused. When combining the
|
|
|
|
# query with AND we must recreate all joins for m2m filters. When
|
|
|
|
# combining with OR we can reuse joins. The reason is that in AND
|
|
|
|
# case a single row can't fulfill a condition like:
|
|
|
|
# revrel__col=1 & revrel__col=2
|
|
|
|
# But, there might be two different related rows matching this
|
|
|
|
# condition. In OR case a single True is enough, so single row is
|
|
|
|
# enough, too.
|
|
|
|
#
|
|
|
|
# Note that we will be creating duplicate joins for non-m2m joins in
|
|
|
|
# the AND case. The results will be correct but this creates too many
|
|
|
|
# joins. This is something that could be fixed later on.
|
|
|
|
reuse = set() if conjunction else set(self.tables)
|
|
|
|
# Base table must be present in the query - this is the same
|
|
|
|
# table on both sides.
|
|
|
|
self.get_initial_alias()
|
2014-01-09 01:35:47 +08:00
|
|
|
joinpromoter = JoinPromoter(connector, 2, False)
|
2013-11-05 00:04:57 +08:00
|
|
|
joinpromoter.add_votes(
|
2014-11-17 16:26:10 +08:00
|
|
|
j for j in self.alias_map if self.alias_map[j].join_type == INNER)
|
2013-11-05 00:04:57 +08:00
|
|
|
rhs_votes = set()
|
2012-08-11 03:00:21 +08:00
|
|
|
# Now, add the joins from rhs query into the new query (skipping base
|
|
|
|
# table).
|
|
|
|
for alias in rhs.tables[1:]:
|
2014-11-17 16:26:10 +08:00
|
|
|
join = rhs.alias_map[alias]
|
2011-05-06 04:26:26 +08:00
|
|
|
# If the left side of the join was already relabeled, use the
|
|
|
|
# updated alias.
|
2014-11-17 16:26:10 +08:00
|
|
|
join = join.relabeled_clone(change_map)
|
|
|
|
new_alias = self.join(join, reuse=reuse)
|
|
|
|
if join.join_type == INNER:
|
2013-11-05 00:04:57 +08:00
|
|
|
rhs_votes.add(new_alias)
|
2012-08-11 03:00:21 +08:00
|
|
|
# We can't reuse the same join again in the query. If we have two
|
|
|
|
# distinct joins for the same connection in rhs query, then the
|
|
|
|
# combined query must have two joins, too.
|
|
|
|
reuse.discard(new_alias)
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
change_map[alias] = new_alias
|
2012-08-25 21:33:07 +08:00
|
|
|
if not rhs.alias_refcount[alias]:
|
|
|
|
# The alias was unused in the rhs query. Unref it so that it
|
|
|
|
# will be unused in the new query, too. We have to add and
|
|
|
|
# unref the alias so that join promotion has information of
|
|
|
|
# the join type for the unused alias.
|
|
|
|
self.unref_alias(new_alias)
|
2013-11-05 00:04:57 +08:00
|
|
|
joinpromoter.add_votes(rhs_votes)
|
|
|
|
joinpromoter.update_join_types(self)
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
|
|
|
# Now relabel a copy of the rhs where-clause and add it to the current
|
|
|
|
# one.
|
|
|
|
if rhs.where:
|
2012-06-02 09:13:36 +08:00
|
|
|
w = rhs.where.clone()
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
w.relabel_aliases(change_map)
|
|
|
|
if not self.where:
|
|
|
|
# Since 'self' matches everything, add an explicit "include
|
|
|
|
# everything" where-constraint so that connections between the
|
|
|
|
# where clauses won't exclude valid results.
|
|
|
|
self.where.add(EverythingNode(), AND)
|
|
|
|
elif self.where:
|
|
|
|
# rhs has an empty where clause.
|
|
|
|
w = self.where_class()
|
|
|
|
w.add(EverythingNode(), AND)
|
|
|
|
else:
|
|
|
|
w = self.where_class()
|
|
|
|
self.where.add(w, connector)
|
|
|
|
|
|
|
|
# Selection columns and extra extensions are those provided by 'rhs'.
|
|
|
|
self.select = []
|
2012-10-26 01:57:32 +08:00
|
|
|
for col, field in rhs.select:
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
if isinstance(col, (list, tuple)):
|
2012-10-26 01:57:32 +08:00
|
|
|
new_col = change_map.get(col[0], col[0]), col[1]
|
|
|
|
self.select.append(SelectInfo(new_col, field))
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
else:
|
2013-03-02 07:06:56 +08:00
|
|
|
new_col = col.relabeled_clone(change_map)
|
|
|
|
self.select.append(SelectInfo(new_col, field))
|
2008-06-30 14:24:21 +08:00
|
|
|
|
|
|
|
if connector == OR:
|
|
|
|
# It would be nice to be able to handle this, but the queries don't
|
|
|
|
# really make sense (or return consistent value sets). Not worth
|
|
|
|
# the extra complexity when you can write a real query instead.
|
2013-08-21 19:25:19 +08:00
|
|
|
if self._extra and rhs._extra:
|
2008-06-30 14:24:21 +08:00
|
|
|
raise ValueError("When merging querysets using 'or', you "
|
|
|
|
"cannot have extra(select=...) on both sides.")
|
2009-04-30 23:40:09 +08:00
|
|
|
self.extra.update(rhs.extra)
|
|
|
|
extra_select_mask = set()
|
|
|
|
if self.extra_select_mask is not None:
|
|
|
|
extra_select_mask.update(self.extra_select_mask)
|
|
|
|
if rhs.extra_select_mask is not None:
|
|
|
|
extra_select_mask.update(rhs.extra_select_mask)
|
|
|
|
if extra_select_mask:
|
|
|
|
self.set_extra_mask(extra_select_mask)
|
2008-06-30 14:24:21 +08:00
|
|
|
self.extra_tables += rhs.extra_tables
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
|
|
|
# Ordering uses the 'rhs' ordering, unless it has none, in which case
|
|
|
|
# the current ordering is used.
|
2013-05-17 22:33:36 +08:00
|
|
|
self.order_by = rhs.order_by[:] if rhs.order_by else self.order_by
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
self.extra_order_by = rhs.extra_order_by or self.extra_order_by
|
|
|
|
|
2009-03-19 17:06:04 +08:00
|
|
|
def deferred_to_data(self, target, callback):
|
|
|
|
"""
|
|
|
|
Converts the self.deferred_loading data structure to an alternate data
|
|
|
|
structure, describing the field that *will* be loaded. This is used to
|
|
|
|
compute the columns to select from the database and also by the
|
2014-03-02 22:25:53 +08:00
|
|
|
QuerySet class to work out which fields are being initialized on each
|
2009-03-19 17:06:04 +08:00
|
|
|
model. Models that have all their fields included aren't mentioned in
|
|
|
|
the result, only those that have field restrictions in place.
|
|
|
|
|
|
|
|
The "target" parameter is the instance that is populated (in place).
|
|
|
|
The "callback" is a function that is called whenever a (model, field)
|
|
|
|
pair need to be added to "target". It accepts three parameters:
|
|
|
|
"target", and the model and list of fields being added for that model.
|
|
|
|
"""
|
|
|
|
field_names, defer = self.deferred_loading
|
|
|
|
if not field_names:
|
|
|
|
return
|
2013-05-14 03:40:39 +08:00
|
|
|
orig_opts = self.get_meta()
|
2009-03-19 17:06:04 +08:00
|
|
|
seen = {}
|
2014-09-26 20:31:50 +08:00
|
|
|
must_include = {orig_opts.concrete_model: {orig_opts.pk}}
|
2009-03-19 17:06:04 +08:00
|
|
|
for field_name in field_names:
|
|
|
|
parts = field_name.split(LOOKUP_SEP)
|
2014-02-15 19:24:20 +08:00
|
|
|
cur_model = self.model._meta.concrete_model
|
2009-04-04 13:35:01 +08:00
|
|
|
opts = orig_opts
|
2009-03-19 17:06:04 +08:00
|
|
|
for name in parts[:-1]:
|
|
|
|
old_model = cur_model
|
|
|
|
source = opts.get_field_by_name(name)[0]
|
2012-11-29 00:16:00 +08:00
|
|
|
if is_reverse_o2o(source):
|
|
|
|
cur_model = source.model
|
|
|
|
else:
|
|
|
|
cur_model = source.rel.to
|
2009-03-19 17:06:04 +08:00
|
|
|
opts = cur_model._meta
|
|
|
|
# Even if we're "just passing through" this model, we must add
|
|
|
|
# both the current model's pk and the related reference field
|
2012-11-29 00:16:00 +08:00
|
|
|
# (if it's not a reverse relation) to the things we select.
|
|
|
|
if not is_reverse_o2o(source):
|
|
|
|
must_include[old_model].add(source)
|
2009-03-19 17:06:04 +08:00
|
|
|
add_to_dict(must_include, cur_model, opts.pk)
|
|
|
|
field, model, _, _ = opts.get_field_by_name(parts[-1])
|
|
|
|
if model is None:
|
|
|
|
model = cur_model
|
2012-11-29 00:16:00 +08:00
|
|
|
if not is_reverse_o2o(field):
|
|
|
|
add_to_dict(seen, model, field)
|
2009-03-19 17:06:04 +08:00
|
|
|
|
|
|
|
if defer:
|
|
|
|
# We need to load all fields for each model, except those that
|
|
|
|
# appear in "seen" (for all models that appear in "seen"). The only
|
|
|
|
# slight complexity here is handling fields that exist on parent
|
|
|
|
# models.
|
|
|
|
workset = {}
|
2012-07-21 03:14:27 +08:00
|
|
|
for model, values in six.iteritems(seen):
|
2010-05-01 00:32:48 +08:00
|
|
|
for field, m in model._meta.get_fields_with_model():
|
2009-03-19 17:06:04 +08:00
|
|
|
if field in values:
|
|
|
|
continue
|
2010-05-01 00:32:48 +08:00
|
|
|
add_to_dict(workset, m or model, field)
|
2012-07-21 03:14:27 +08:00
|
|
|
for model, values in six.iteritems(must_include):
|
2009-03-19 17:06:04 +08:00
|
|
|
# If we haven't included a model in workset, we don't add the
|
|
|
|
# corresponding must_include fields for that model, since an
|
|
|
|
# empty set means "include all fields". That's why there's no
|
|
|
|
# "else" branch here.
|
|
|
|
if model in workset:
|
|
|
|
workset[model].update(values)
|
2012-07-21 03:14:27 +08:00
|
|
|
for model, values in six.iteritems(workset):
|
2009-03-19 17:06:04 +08:00
|
|
|
callback(target, model, values)
|
|
|
|
else:
|
2012-07-21 03:14:27 +08:00
|
|
|
for model, values in six.iteritems(must_include):
|
2009-03-19 17:06:04 +08:00
|
|
|
if model in seen:
|
|
|
|
seen[model].update(values)
|
|
|
|
else:
|
|
|
|
# As we've passed through this model, but not explicitly
|
|
|
|
# included any fields, we have to make sure it's mentioned
|
|
|
|
# so that only the "must include" fields are pulled in.
|
|
|
|
seen[model] = values
|
2009-06-06 14:14:05 +08:00
|
|
|
# Now ensure that every model in the inheritance chain is mentioned
|
|
|
|
# in the parent list. Again, it must be mentioned to ensure that
|
|
|
|
# only "must include" fields are pulled in.
|
|
|
|
for model in orig_opts.get_parent_list():
|
|
|
|
if model not in seen:
|
|
|
|
seen[model] = set()
|
2012-07-21 03:14:27 +08:00
|
|
|
for model, values in six.iteritems(seen):
|
2009-03-19 17:06:04 +08:00
|
|
|
callback(target, model, values)
|
|
|
|
|
|
|
|
def deferred_to_columns_cb(self, target, model, fields):
|
|
|
|
"""
|
|
|
|
Callback used by deferred_to_columns(). The "target" parameter should
|
|
|
|
be a set instance.
|
|
|
|
"""
|
|
|
|
table = model._meta.db_table
|
|
|
|
if table not in target:
|
|
|
|
target[table] = set()
|
|
|
|
for field in fields:
|
|
|
|
target[table].add(field.column)
|
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
def table_alias(self, table_name, create=False):
|
|
|
|
"""
|
|
|
|
Returns a table alias for the given table_name and whether this is a
|
|
|
|
new alias or not.
|
|
|
|
|
|
|
|
If 'create' is true, a new alias is always created. Otherwise, the
|
|
|
|
most recently created alias for the table (if one exists) is reused.
|
|
|
|
"""
|
2014-06-14 18:50:18 +08:00
|
|
|
alias_list = self.table_map.get(table_name)
|
|
|
|
if not create and alias_list:
|
|
|
|
alias = alias_list[0]
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
self.alias_refcount[alias] += 1
|
|
|
|
return alias, False
|
|
|
|
|
|
|
|
# Create a new alias for this table.
|
2014-06-14 18:50:18 +08:00
|
|
|
if alias_list:
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
alias = '%s%d' % (self.alias_prefix, len(self.alias_map) + 1)
|
2014-06-14 18:50:18 +08:00
|
|
|
alias_list.append(alias)
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
else:
|
2014-04-27 01:18:45 +08:00
|
|
|
# The first occurrence of a table uses the table name directly.
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
alias = table_name
|
|
|
|
self.table_map[alias] = [alias]
|
|
|
|
self.alias_refcount[alias] = 1
|
|
|
|
self.tables.append(alias)
|
|
|
|
return alias, True
|
|
|
|
|
|
|
|
def ref_alias(self, alias):
|
|
|
|
""" Increases the reference count for this alias. """
|
|
|
|
self.alias_refcount[alias] += 1
|
|
|
|
|
2011-12-23 04:42:40 +08:00
|
|
|
def unref_alias(self, alias, amount=1):
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
""" Decreases the reference count for this alias. """
|
2011-12-23 04:42:40 +08:00
|
|
|
self.alias_refcount[alias] -= amount
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
2013-08-07 17:38:30 +08:00
|
|
|
def promote_joins(self, aliases):
|
2012-08-22 02:54:14 +08:00
|
|
|
"""
|
|
|
|
Promotes recursively the join type of given aliases and its children to
|
|
|
|
an outer join. If 'unconditional' is False, the join is only promoted if
|
|
|
|
it is nullable or the parent join is an outer join.
|
|
|
|
|
2013-11-05 00:04:57 +08:00
|
|
|
The children promotion is done to avoid join chains that contain a LOUTER
|
|
|
|
b INNER c. So, if we have currently a INNER b INNER c and a->b is promoted,
|
|
|
|
then we must also promote b->c automatically, or otherwise the promotion
|
|
|
|
of a->b doesn't actually change anything in the query results.
|
2012-08-22 02:54:14 +08:00
|
|
|
"""
|
|
|
|
aliases = list(aliases)
|
|
|
|
while aliases:
|
|
|
|
alias = aliases.pop(0)
|
2014-11-17 16:26:10 +08:00
|
|
|
if self.alias_map[alias].join_type is None:
|
2012-10-08 23:36:51 +08:00
|
|
|
# This is the base table (first FROM entry) - this table
|
|
|
|
# isn't really joined at all in the query, so we should not
|
|
|
|
# alter its join type.
|
|
|
|
continue
|
2013-08-07 17:38:30 +08:00
|
|
|
# Only the first alias (skipped above) should have None join_type
|
|
|
|
assert self.alias_map[alias].join_type is not None
|
2014-11-17 16:26:10 +08:00
|
|
|
parent_alias = self.alias_map[alias].parent_alias
|
2013-11-05 00:04:57 +08:00
|
|
|
parent_louter = (
|
|
|
|
parent_alias
|
2014-11-17 16:26:10 +08:00
|
|
|
and self.alias_map[parent_alias].join_type == LOUTER)
|
|
|
|
already_louter = self.alias_map[alias].join_type == LOUTER
|
2013-08-07 17:38:30 +08:00
|
|
|
if ((self.alias_map[alias].nullable or parent_louter) and
|
|
|
|
not already_louter):
|
2014-11-17 16:26:10 +08:00
|
|
|
self.alias_map[alias] = self.alias_map[alias].promote()
|
2012-08-22 02:54:14 +08:00
|
|
|
# Join type of 'alias' changed, so re-examine all aliases that
|
|
|
|
# refer to this one.
|
|
|
|
aliases.extend(
|
|
|
|
join for join in self.alias_map.keys()
|
2014-11-17 16:26:10 +08:00
|
|
|
if (self.alias_map[join].parent_alias == alias
|
2012-08-22 02:54:14 +08:00
|
|
|
and join not in aliases))
|
2008-09-02 21:52:07 +08:00
|
|
|
|
2013-11-05 00:04:57 +08:00
|
|
|
def demote_joins(self, aliases):
|
|
|
|
"""
|
|
|
|
Change join type from LOUTER to INNER for all joins in aliases.
|
|
|
|
|
|
|
|
Similarly to promote_joins(), this method must ensure no join chains
|
|
|
|
containing first an outer, then an inner join are generated. If we
|
|
|
|
are demoting b->c join in chain a LOUTER b LOUTER c then we must
|
|
|
|
demote a->b automatically, or otherwise the demotion of b->c doesn't
|
|
|
|
actually change anything in the query results. .
|
|
|
|
"""
|
|
|
|
aliases = list(aliases)
|
|
|
|
while aliases:
|
|
|
|
alias = aliases.pop(0)
|
2014-11-17 16:26:10 +08:00
|
|
|
if self.alias_map[alias].join_type == LOUTER:
|
|
|
|
self.alias_map[alias] = self.alias_map[alias].demote()
|
|
|
|
parent_alias = self.alias_map[alias].parent_alias
|
|
|
|
if self.alias_map[parent_alias].join_type == INNER:
|
2013-11-05 00:04:57 +08:00
|
|
|
aliases.append(parent_alias)
|
|
|
|
|
2011-12-23 04:42:40 +08:00
|
|
|
def reset_refcounts(self, to_counts):
|
|
|
|
"""
|
|
|
|
This method will reset reference counts for aliases so that they match
|
|
|
|
the value passed in :param to_counts:.
|
|
|
|
"""
|
|
|
|
for alias, cur_refcount in self.alias_refcount.copy().items():
|
|
|
|
unref_amount = cur_refcount - to_counts.get(alias, 0)
|
|
|
|
self.unref_alias(alias, unref_amount)
|
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
def change_aliases(self, change_map):
|
|
|
|
"""
|
|
|
|
Changes the aliases in change_map (which maps old-alias -> new-alias),
|
|
|
|
relabelling any references to them in select columns and the where
|
|
|
|
clause.
|
|
|
|
"""
|
|
|
|
assert set(change_map.keys()).intersection(set(change_map.values())) == set()
|
|
|
|
|
2012-10-26 01:57:32 +08:00
|
|
|
def relabel_column(col):
|
|
|
|
if isinstance(col, (list, tuple)):
|
|
|
|
old_alias = col[0]
|
|
|
|
return (change_map.get(old_alias, old_alias), col[1])
|
|
|
|
else:
|
2013-03-02 07:06:56 +08:00
|
|
|
return col.relabeled_clone(change_map)
|
2009-02-23 22:47:59 +08:00
|
|
|
# 1. Update references in "select" (normal columns plus aliases),
|
|
|
|
# "group by", "where" and "having".
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
self.where.relabel_aliases(change_map)
|
2009-02-23 22:47:59 +08:00
|
|
|
self.having.relabel_aliases(change_map)
|
2012-10-26 01:57:32 +08:00
|
|
|
if self.group_by:
|
|
|
|
self.group_by = [relabel_column(col) for col in self.group_by]
|
|
|
|
self.select = [SelectInfo(relabel_column(s.col), s.field)
|
|
|
|
for s in self.select]
|
2013-12-25 21:13:18 +08:00
|
|
|
if self._annotations:
|
|
|
|
self._annotations = OrderedDict(
|
|
|
|
(key, relabel_column(col)) for key, col in self._annotations.items())
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
|
|
|
# 2. Rename the alias in the internal table/alias datastructures.
|
2012-07-21 03:14:27 +08:00
|
|
|
for old_alias, new_alias in six.iteritems(change_map):
|
2014-11-17 16:26:10 +08:00
|
|
|
if old_alias not in self.alias_map:
|
2014-10-07 21:07:46 +08:00
|
|
|
continue
|
2014-11-17 16:26:10 +08:00
|
|
|
alias_data = self.alias_map[old_alias].relabeled_clone(change_map)
|
|
|
|
self.alias_map[new_alias] = alias_data
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
self.alias_refcount[new_alias] = self.alias_refcount[old_alias]
|
|
|
|
del self.alias_refcount[old_alias]
|
|
|
|
del self.alias_map[old_alias]
|
|
|
|
|
2012-04-30 06:50:48 +08:00
|
|
|
table_aliases = self.table_map[alias_data.table_name]
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
for pos, alias in enumerate(table_aliases):
|
|
|
|
if alias == old_alias:
|
|
|
|
table_aliases[pos] = new_alias
|
|
|
|
break
|
|
|
|
for pos, alias in enumerate(self.tables):
|
|
|
|
if alias == old_alias:
|
|
|
|
self.tables[pos] = new_alias
|
|
|
|
break
|
2009-03-04 13:34:01 +08:00
|
|
|
for key, alias in self.included_inherited_models.items():
|
|
|
|
if alias in change_map:
|
|
|
|
self.included_inherited_models[key] = change_map[alias]
|
2014-10-07 21:07:46 +08:00
|
|
|
self.external_aliases = {change_map.get(alias, alias)
|
|
|
|
for alias in self.external_aliases}
|
|
|
|
|
2013-08-13 19:11:52 +08:00
|
|
|
def bump_prefix(self, outer_query):
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
"""
|
2013-08-13 19:11:52 +08:00
|
|
|
Changes the alias prefix to the next letter in the alphabet in a way
|
|
|
|
that the outer query's aliases and this query's aliases will not
|
|
|
|
conflict. Even tables that previously had no alias will get an alias
|
|
|
|
after this call.
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
"""
|
2013-11-03 04:35:45 +08:00
|
|
|
if self.alias_prefix != outer_query.alias_prefix:
|
|
|
|
# No clashes between self and outer query should be possible.
|
|
|
|
return
|
2013-08-13 19:11:52 +08:00
|
|
|
self.alias_prefix = chr(ord(self.alias_prefix) + 1)
|
|
|
|
while self.alias_prefix in self.subq_aliases:
|
|
|
|
self.alias_prefix = chr(ord(self.alias_prefix) + 1)
|
|
|
|
assert self.alias_prefix < 'Z'
|
|
|
|
self.subq_aliases = self.subq_aliases.union([self.alias_prefix])
|
|
|
|
outer_query.subq_aliases = outer_query.subq_aliases.union(self.subq_aliases)
|
2013-08-03 13:41:15 +08:00
|
|
|
change_map = OrderedDict()
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
for pos, alias in enumerate(self.tables):
|
2013-08-13 19:11:52 +08:00
|
|
|
new_alias = '%s%d' % (self.alias_prefix, pos)
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
change_map[alias] = new_alias
|
|
|
|
self.tables[pos] = new_alias
|
|
|
|
self.change_aliases(change_map)
|
|
|
|
|
|
|
|
def get_initial_alias(self):
|
|
|
|
"""
|
|
|
|
Returns the first alias for this query, after increasing its reference
|
|
|
|
count.
|
|
|
|
"""
|
|
|
|
if self.tables:
|
|
|
|
alias = self.tables[0]
|
|
|
|
self.ref_alias(alias)
|
|
|
|
else:
|
2014-11-17 16:26:10 +08:00
|
|
|
alias = self.join(BaseTable(self.get_meta().db_table, None))
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
return alias
|
|
|
|
|
|
|
|
def count_active_tables(self):
|
|
|
|
"""
|
|
|
|
Returns the number of tables in this query with a non-zero reference
|
2011-12-23 04:42:40 +08:00
|
|
|
count. Note that after execution, the reference counts are zeroed, so
|
|
|
|
tables added in compiler will not be seen by this method.
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
"""
|
2012-11-11 07:59:24 +08:00
|
|
|
return len([1 for count in self.alias_refcount.values() if count])
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
2014-11-17 16:26:10 +08:00
|
|
|
def join(self, join, reuse=None):
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
"""
|
|
|
|
Returns an alias for the join in 'connection', either reusing an
|
|
|
|
existing alias for that join or creating a new one. 'connection' is a
|
2013-03-25 00:40:40 +08:00
|
|
|
tuple (lhs, table, join_cols) where 'lhs' is either an existing
|
|
|
|
table alias or a table name. 'join_cols' is a tuple of tuples containing
|
|
|
|
columns to join on ((l_id1, r_id1), (l_id2, r_id2)). The join corresponds
|
|
|
|
to the SQL equivalent of::
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
2013-03-25 00:40:40 +08:00
|
|
|
lhs.l_id1 = table.r_id1 AND lhs.l_id2 = table.r_id2
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
2012-12-21 03:25:48 +08:00
|
|
|
The 'reuse' parameter can be either None which means all joins
|
|
|
|
(matching the connection) are reusable, or it can be a set containing
|
|
|
|
the aliases that can be reused.
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
2012-08-22 02:54:14 +08:00
|
|
|
A join is always created as LOUTER if the lhs alias is LOUTER to make
|
2013-11-07 03:31:19 +08:00
|
|
|
sure we do not generate chains like t1 LOUTER t2 INNER t3. All new
|
|
|
|
joins are created as LOUTER if nullable is True.
|
2012-08-22 02:54:14 +08:00
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
If 'nullable' is True, the join can potentially involve NULL values and
|
|
|
|
is a candidate for promotion (to "left outer") when combining querysets.
|
2012-08-25 21:33:07 +08:00
|
|
|
|
|
|
|
The 'join_field' is the field we are joining along (if any).
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
"""
|
2014-11-17 16:26:10 +08:00
|
|
|
reuse = [a for a, j in self.alias_map.items()
|
|
|
|
if (reuse is None or a in reuse) and j == join]
|
|
|
|
if reuse:
|
|
|
|
self.ref_alias(reuse[0])
|
|
|
|
return reuse[0]
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
|
|
|
# No reuse is possible, so we need a new alias.
|
2014-11-17 16:26:10 +08:00
|
|
|
alias, _ = self.table_alias(join.table_name, create=True)
|
|
|
|
if join.join_type:
|
|
|
|
if self.alias_map[join.parent_alias].join_type == LOUTER or join.nullable:
|
|
|
|
join_type = LOUTER
|
|
|
|
else:
|
|
|
|
join_type = INNER
|
|
|
|
join.join_type = join_type
|
|
|
|
join.table_alias = alias
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
self.alias_map[alias] = join
|
|
|
|
return alias
|
|
|
|
|
2009-03-04 13:34:01 +08:00
|
|
|
def setup_inherited_models(self):
|
|
|
|
"""
|
|
|
|
If the model that is the basis for this QuerySet inherits other models,
|
|
|
|
we need to ensure that those other models have their tables included in
|
|
|
|
the query.
|
|
|
|
|
|
|
|
We do this as a separate step so that subclasses know which
|
|
|
|
tables are going to be active in the query, without needing to compute
|
|
|
|
all the select columns (this method is called from pre_sql_setup(),
|
|
|
|
whereas column determination is a later part, and side-effect, of
|
|
|
|
as_sql()).
|
|
|
|
"""
|
2013-05-14 03:40:39 +08:00
|
|
|
opts = self.get_meta()
|
2009-03-04 13:34:01 +08:00
|
|
|
root_alias = self.tables[0]
|
|
|
|
seen = {None: root_alias}
|
2009-05-29 12:35:10 +08:00
|
|
|
|
2009-03-04 13:34:01 +08:00
|
|
|
for field, model in opts.get_fields_with_model():
|
|
|
|
if model not in seen:
|
2012-12-17 20:02:41 +08:00
|
|
|
self.join_parent_model(opts, model, root_alias, seen)
|
2009-03-04 13:34:01 +08:00
|
|
|
self.included_inherited_models = seen
|
|
|
|
|
2012-12-17 20:02:41 +08:00
|
|
|
def join_parent_model(self, opts, model, alias, seen):
|
|
|
|
"""
|
|
|
|
Makes sure the given 'model' is joined in the query. If 'model' isn't
|
|
|
|
a parent of 'opts' or if it is None this method is a no-op.
|
|
|
|
|
|
|
|
The 'alias' is the root alias for starting the join, 'seen' is a dict
|
2012-12-22 02:07:13 +08:00
|
|
|
of model -> alias of existing joins. It must also contain a mapping
|
|
|
|
of None -> some alias. This will be returned in the no-op case.
|
2012-12-17 20:02:41 +08:00
|
|
|
"""
|
|
|
|
if model in seen:
|
|
|
|
return seen[model]
|
|
|
|
chain = opts.get_base_chain(model)
|
|
|
|
if chain is None:
|
|
|
|
return alias
|
2013-06-16 01:31:46 +08:00
|
|
|
curr_opts = opts
|
2012-12-17 20:02:41 +08:00
|
|
|
for int_model in chain:
|
|
|
|
if int_model in seen:
|
|
|
|
return seen[int_model]
|
|
|
|
# Proxy model have elements in base chain
|
|
|
|
# with no parents, assign the new options
|
|
|
|
# object and skip to the next base in that
|
|
|
|
# case
|
2013-06-16 01:31:46 +08:00
|
|
|
if not curr_opts.parents[int_model]:
|
|
|
|
curr_opts = int_model._meta
|
2012-12-17 20:02:41 +08:00
|
|
|
continue
|
2013-06-16 01:31:46 +08:00
|
|
|
link_field = curr_opts.get_ancestor_link(int_model)
|
|
|
|
_, _, _, joins, _ = self.setup_joins(
|
|
|
|
[link_field.name], curr_opts, alias)
|
|
|
|
curr_opts = int_model._meta
|
|
|
|
alias = seen[int_model] = joins[-1]
|
2012-12-22 02:07:13 +08:00
|
|
|
return alias or seen[None]
|
2012-12-17 20:02:41 +08:00
|
|
|
|
2009-03-04 13:34:01 +08:00
|
|
|
def remove_inherited_models(self):
|
|
|
|
"""
|
|
|
|
Undoes the effects of setup_inherited_models(). Should be called
|
|
|
|
whenever select columns (self.select) are set explicitly.
|
|
|
|
"""
|
|
|
|
for key, alias in self.included_inherited_models.items():
|
|
|
|
if key:
|
|
|
|
self.unref_alias(alias)
|
|
|
|
self.included_inherited_models = {}
|
|
|
|
|
2009-01-15 19:06:34 +08:00
|
|
|
def add_aggregate(self, aggregate, model, alias, is_summary):
|
2013-12-25 21:13:18 +08:00
|
|
|
warnings.warn(
|
|
|
|
"add_aggregate() is deprecated. Use add_annotation() instead.",
|
|
|
|
RemovedInDjango20Warning, stacklevel=2)
|
2014-11-20 18:35:56 +08:00
|
|
|
self.add_annotation(aggregate, alias, is_summary)
|
2009-01-15 19:06:34 +08:00
|
|
|
|
2014-11-20 18:35:56 +08:00
|
|
|
def add_annotation(self, annotation, alias, is_summary):
|
2013-12-25 21:13:18 +08:00
|
|
|
"""
|
|
|
|
Adds a single annotation expression to the Query
|
|
|
|
"""
|
2014-11-18 17:24:33 +08:00
|
|
|
annotation = annotation.resolve_expression(self, allow_joins=True, reuse=None,
|
|
|
|
summarize=is_summary)
|
2013-12-25 21:13:18 +08:00
|
|
|
self.append_annotation_mask([alias])
|
|
|
|
self.annotations[alias] = annotation
|
2009-01-15 19:06:34 +08:00
|
|
|
|
2014-01-18 17:09:43 +08:00
|
|
|
def prepare_lookup_value(self, value, lookups, can_reuse):
|
|
|
|
# Default lookup if none given is exact.
|
|
|
|
if len(lookups) == 0:
|
|
|
|
lookups = ['exact']
|
2013-08-13 19:11:52 +08:00
|
|
|
# Interpret '__exact=None' as the sql 'is NULL'; otherwise, reject all
|
|
|
|
# uses of None as a query value.
|
|
|
|
if value is None:
|
2014-01-18 17:09:43 +08:00
|
|
|
if lookups[-1] not in ('exact', 'iexact'):
|
2013-08-13 19:11:52 +08:00
|
|
|
raise ValueError("Cannot use None as a query value")
|
2014-01-18 17:09:43 +08:00
|
|
|
lookups[-1] = 'isnull'
|
2013-08-13 19:11:52 +08:00
|
|
|
value = True
|
|
|
|
elif callable(value):
|
2013-12-18 23:59:08 +08:00
|
|
|
warnings.warn(
|
|
|
|
"Passing callable arguments to queryset is deprecated.",
|
2014-02-27 05:48:20 +08:00
|
|
|
RemovedInDjango19Warning, stacklevel=2)
|
2013-08-13 19:11:52 +08:00
|
|
|
value = value()
|
2013-12-25 21:13:18 +08:00
|
|
|
elif hasattr(value, 'resolve_expression'):
|
|
|
|
value = value.resolve_expression(self, reuse=can_reuse)
|
2014-10-07 21:07:46 +08:00
|
|
|
# Subqueries need to use a different set of aliases than the
|
|
|
|
# outer query. Call bump_prefix to change aliases of the inner
|
|
|
|
# query (the value).
|
2013-08-13 19:11:52 +08:00
|
|
|
if hasattr(value, 'query') and hasattr(value.query, 'bump_prefix'):
|
|
|
|
value = value._clone()
|
|
|
|
value.query.bump_prefix(self)
|
|
|
|
if hasattr(value, 'bump_prefix'):
|
|
|
|
value = value.clone()
|
|
|
|
value.bump_prefix(self)
|
|
|
|
# For Oracle '' is equivalent to null. The check needs to be done
|
|
|
|
# at this stage because join promotion can't be done at compiler
|
|
|
|
# stage. Using DEFAULT_DB_ALIAS isn't nice, but it is the best we
|
|
|
|
# can do here. Similar thing is done in is_nullable(), too.
|
|
|
|
if (connections[DEFAULT_DB_ALIAS].features.interprets_empty_strings_as_nulls and
|
2014-01-18 17:09:43 +08:00
|
|
|
lookups[-1] == 'exact' and value == ''):
|
2013-08-13 19:11:52 +08:00
|
|
|
value = True
|
2014-01-19 16:07:58 +08:00
|
|
|
lookups[-1] = 'isnull'
|
2014-01-18 17:09:43 +08:00
|
|
|
return value, lookups
|
2013-08-13 19:11:52 +08:00
|
|
|
|
|
|
|
def solve_lookup_type(self, lookup):
|
|
|
|
"""
|
|
|
|
Solve the lookup type from the lookup (eg: 'foobar__id__icontains')
|
|
|
|
"""
|
2014-01-18 17:09:43 +08:00
|
|
|
lookup_splitted = lookup.split(LOOKUP_SEP)
|
2013-12-25 21:13:18 +08:00
|
|
|
if self._annotations:
|
|
|
|
aggregate, aggregate_lookups = refs_aggregate(lookup_splitted, self.annotations)
|
2014-01-18 17:09:43 +08:00
|
|
|
if aggregate:
|
|
|
|
return aggregate_lookups, (), aggregate
|
|
|
|
_, field, _, lookup_parts = self.names_to_path(lookup_splitted, self.get_meta())
|
|
|
|
field_parts = lookup_splitted[0:len(lookup_splitted) - len(lookup_parts)]
|
|
|
|
if len(lookup_parts) == 0:
|
|
|
|
lookup_parts = ['exact']
|
|
|
|
elif len(lookup_parts) > 1:
|
|
|
|
if not field_parts:
|
|
|
|
raise FieldError(
|
|
|
|
'Invalid lookup "%s" for model %s".' %
|
|
|
|
(lookup, self.get_meta().model.__name__))
|
|
|
|
return lookup_parts, field_parts, False
|
|
|
|
|
2014-06-14 15:24:19 +08:00
|
|
|
def check_query_object_type(self, value, opts):
|
|
|
|
"""
|
|
|
|
Checks whether the object passed while querying is of the correct type.
|
|
|
|
If not, it raises a ValueError specifying the wrong object.
|
|
|
|
"""
|
|
|
|
if hasattr(value, '_meta'):
|
|
|
|
if not (value._meta.concrete_model == opts.concrete_model
|
|
|
|
or opts.concrete_model in value._meta.get_parent_list()
|
|
|
|
or value._meta.concrete_model in opts.get_parent_list()):
|
|
|
|
raise ValueError(
|
|
|
|
'Cannot query "%s": Must be "%s" instance.' %
|
|
|
|
(value, opts.object_name))
|
|
|
|
|
|
|
|
def check_related_objects(self, field, value, opts):
|
|
|
|
"""
|
|
|
|
Checks the type of object passed to query relations.
|
|
|
|
"""
|
|
|
|
if field.rel:
|
2014-09-02 21:30:53 +08:00
|
|
|
# QuerySets implement is_compatible_query_object_type() to
|
|
|
|
# determine compatibility with the given field.
|
|
|
|
if hasattr(value, 'is_compatible_query_object_type'):
|
|
|
|
if not value.is_compatible_query_object_type(opts):
|
|
|
|
raise ValueError(
|
|
|
|
'Cannot use QuerySet for "%s": Use a QuerySet for "%s".' %
|
|
|
|
(value.model._meta.model_name, opts.object_name)
|
|
|
|
)
|
2014-10-28 09:36:47 +08:00
|
|
|
elif hasattr(value, '_meta'):
|
|
|
|
self.check_query_object_type(value, opts)
|
2014-09-02 21:30:53 +08:00
|
|
|
elif hasattr(value, '__iter__'):
|
|
|
|
for v in value:
|
|
|
|
self.check_query_object_type(v, opts)
|
2014-06-14 15:24:19 +08:00
|
|
|
|
2014-01-18 17:09:43 +08:00
|
|
|
def build_lookup(self, lookups, lhs, rhs):
|
2014-11-10 21:38:03 +08:00
|
|
|
"""
|
|
|
|
Tries to extract transforms and lookup from given lhs.
|
|
|
|
|
|
|
|
The lhs value is something that works like SQLExpression.
|
|
|
|
The rhs value is what the lookup is going to compare against.
|
|
|
|
The lookups is a list of names to extract using get_lookup()
|
|
|
|
and get_transform().
|
|
|
|
"""
|
2014-01-18 17:09:43 +08:00
|
|
|
lookups = lookups[:]
|
|
|
|
while lookups:
|
2014-11-10 21:38:03 +08:00
|
|
|
name = lookups[0]
|
|
|
|
# If there is just one part left, try first get_lookup() so
|
|
|
|
# that if the lhs supports both transform and lookup for the
|
|
|
|
# name, then lookup will be picked.
|
2014-03-02 03:21:57 +08:00
|
|
|
if len(lookups) == 1:
|
2014-11-10 21:38:03 +08:00
|
|
|
final_lookup = lhs.get_lookup(name)
|
|
|
|
if not final_lookup:
|
|
|
|
# We didn't find a lookup. We are going to interpret
|
|
|
|
# the name as transform, and do an Exact lookup against
|
|
|
|
# it.
|
2014-11-15 19:04:02 +08:00
|
|
|
lhs = self.try_transform(lhs, name, lookups)
|
2014-11-10 21:38:03 +08:00
|
|
|
final_lookup = lhs.get_lookup('exact')
|
2014-11-15 19:04:02 +08:00
|
|
|
return final_lookup(lhs, rhs)
|
|
|
|
lhs = self.try_transform(lhs, name, lookups)
|
2014-01-18 17:09:43 +08:00
|
|
|
lookups = lookups[1:]
|
2013-08-13 19:11:52 +08:00
|
|
|
|
2014-11-15 19:04:02 +08:00
|
|
|
def try_transform(self, lhs, name, rest_of_lookups):
|
2014-11-10 21:38:03 +08:00
|
|
|
"""
|
|
|
|
Helper method for build_lookup. Tries to fetch and initialize
|
|
|
|
a transform for name parameter from lhs.
|
|
|
|
"""
|
|
|
|
next = lhs.get_transform(name)
|
|
|
|
if next:
|
|
|
|
return next(lhs, rest_of_lookups)
|
|
|
|
else:
|
|
|
|
raise FieldError(
|
|
|
|
"Unsupported lookup '%s' for %s or join on the field not "
|
|
|
|
"permitted." %
|
|
|
|
(name, lhs.output_field.__class__.__name__))
|
|
|
|
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
def build_filter(self, filter_expr, branch_negated=False, current_negated=False,
|
2013-09-25 00:37:55 +08:00
|
|
|
can_reuse=None, connector=AND):
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
"""
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
Builds a WhereNode for a single filter clause, but doesn't add it
|
|
|
|
to this Query. Query.add_q() will then add this filter to the where
|
|
|
|
or having Node.
|
|
|
|
|
|
|
|
The 'branch_negated' tells us if the current branch contains any
|
|
|
|
negations. This will be used to determine if subqueries are needed.
|
|
|
|
|
|
|
|
The 'current_negated' is used to determine if the current filter is
|
|
|
|
negated or not and this will be used to determine if IS NULL filtering
|
|
|
|
is needed.
|
|
|
|
|
|
|
|
The difference between current_netageted and branch_negated is that
|
|
|
|
branch_negated is set on first negation, but current_negated is
|
|
|
|
flipped for each negation.
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
Note that add_filter will not do any negating itself, that is done
|
|
|
|
upper in the code by add_q().
|
2008-04-28 12:29:06 +08:00
|
|
|
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
The 'can_reuse' is a set of reusable joins for multijoins.
|
|
|
|
|
|
|
|
The method will create a filter clause that can be added to the current
|
|
|
|
query. However, if the filter isn't added to the query then the caller
|
|
|
|
is responsible for unreffing the joins used.
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
"""
|
|
|
|
arg, value = filter_expr
|
2014-01-18 17:09:43 +08:00
|
|
|
if not arg:
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
raise FieldError("Cannot parse keyword query %r" % arg)
|
2014-01-18 17:09:43 +08:00
|
|
|
lookups, parts, reffed_aggregate = self.solve_lookup_type(arg)
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
2012-02-05 15:11:53 +08:00
|
|
|
# Work out the lookup type and remove it from the end of 'parts',
|
|
|
|
# if necessary.
|
2014-01-18 17:09:43 +08:00
|
|
|
value, lookups = self.prepare_lookup_value(value, lookups, can_reuse)
|
2013-11-05 00:04:57 +08:00
|
|
|
used_joins = getattr(value, '_used_joins', [])
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
clause = self.where_class()
|
2014-01-18 17:09:43 +08:00
|
|
|
if reffed_aggregate:
|
|
|
|
condition = self.build_lookup(lookups, reffed_aggregate, value)
|
|
|
|
if not condition:
|
|
|
|
# Backwards compat for custom lookups
|
|
|
|
assert len(lookups) == 1
|
|
|
|
condition = (reffed_aggregate, lookups[0], value)
|
|
|
|
clause.add(condition, AND)
|
|
|
|
return clause, []
|
2009-01-15 19:06:34 +08:00
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
opts = self.get_meta()
|
|
|
|
alias = self.get_initial_alias()
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
allow_many = not branch_negated
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
|
|
|
try:
|
2013-03-25 00:40:40 +08:00
|
|
|
field, sources, opts, join_list, path = self.setup_joins(
|
2014-06-13 16:12:31 +08:00
|
|
|
parts, opts, alias, can_reuse=can_reuse, allow_many=allow_many)
|
2014-06-14 15:24:19 +08:00
|
|
|
|
|
|
|
self.check_related_objects(field, value, opts)
|
|
|
|
|
2014-04-28 20:27:36 +08:00
|
|
|
# split_exclude() needs to know which joins were generated for the
|
|
|
|
# lookup parts
|
|
|
|
self._lookup_joins = join_list
|
2012-04-29 00:09:37 +08:00
|
|
|
except MultiJoin as e:
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
return self.split_exclude(filter_expr, LOOKUP_SEP.join(parts[:e.level]),
|
|
|
|
can_reuse, e.names_with_path)
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
2013-09-25 00:37:55 +08:00
|
|
|
if can_reuse is not None:
|
|
|
|
can_reuse.update(join_list)
|
2013-11-05 00:04:57 +08:00
|
|
|
used_joins = set(used_joins).union(set(join_list))
|
2009-03-06 10:02:09 +08:00
|
|
|
|
2013-11-05 00:04:57 +08:00
|
|
|
# Process the join list to see if we can remove any non-needed joins from
|
|
|
|
# the far end (fewer tables in a query is better).
|
2013-03-25 00:40:40 +08:00
|
|
|
targets, alias, join_list = self.trim_joins(sources, join_list, path)
|
|
|
|
|
|
|
|
if hasattr(field, 'get_lookup_constraint'):
|
2014-01-18 17:09:43 +08:00
|
|
|
# For now foreign keys get special treatment. This should be
|
|
|
|
# refactored when composite fields lands.
|
|
|
|
condition = field.get_lookup_constraint(self.where_class, alias, targets, sources,
|
|
|
|
lookups, value)
|
|
|
|
lookup_type = lookups[-1]
|
2013-03-25 00:40:40 +08:00
|
|
|
else:
|
2014-01-18 17:09:43 +08:00
|
|
|
assert(len(targets) == 1)
|
2013-12-25 21:13:18 +08:00
|
|
|
if hasattr(targets[0], 'as_sql'):
|
|
|
|
# handle Expressions as annotations
|
|
|
|
col = targets[0]
|
|
|
|
else:
|
|
|
|
col = Col(alias, targets[0], field)
|
2014-01-18 17:09:43 +08:00
|
|
|
condition = self.build_lookup(lookups, col, value)
|
|
|
|
if not condition:
|
|
|
|
# Backwards compat for custom lookups
|
|
|
|
if lookups[0] not in self.query_terms:
|
|
|
|
raise FieldError(
|
|
|
|
"Join on field '%s' not permitted. Did you "
|
|
|
|
"misspell '%s' for the lookup type?" %
|
2014-06-17 23:57:16 +08:00
|
|
|
(col.output_field.name, lookups[0]))
|
2014-01-18 17:09:43 +08:00
|
|
|
if len(lookups) > 1:
|
|
|
|
raise FieldError("Nested lookup '%s' not supported." %
|
|
|
|
LOOKUP_SEP.join(lookups))
|
|
|
|
condition = (Constraint(alias, targets[0].column, field), lookups[0], value)
|
|
|
|
lookup_type = lookups[-1]
|
|
|
|
else:
|
|
|
|
lookup_type = condition.lookup_name
|
|
|
|
|
|
|
|
clause.add(condition, AND)
|
2013-11-05 00:04:57 +08:00
|
|
|
|
|
|
|
require_outer = lookup_type == 'isnull' and value is True and not current_negated
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
if current_negated and (lookup_type != 'isnull' or value is False):
|
2013-11-05 00:04:57 +08:00
|
|
|
require_outer = True
|
2013-02-28 21:04:12 +08:00
|
|
|
if (lookup_type != 'isnull' and (
|
2013-03-25 00:40:40 +08:00
|
|
|
self.is_nullable(targets[0]) or
|
2014-11-17 16:26:10 +08:00
|
|
|
self.alias_map[join_list[-1]].join_type == LOUTER)):
|
2013-02-19 10:21:29 +08:00
|
|
|
# The condition added here will be SQL like this:
|
|
|
|
# NOT (col IS NOT NULL), where the first NOT is added in
|
|
|
|
# upper layers of code. The reason for addition is that if col
|
|
|
|
# is null, then col != someval will result in SQL "unknown"
|
|
|
|
# which isn't the same as in Python. The Python None handling
|
|
|
|
# is wanted, and it can be gotten by
|
|
|
|
# (col IS NULL OR col != someval)
|
|
|
|
# <=>
|
|
|
|
# NOT (col IS NOT NULL AND col = someval).
|
2014-01-18 17:09:43 +08:00
|
|
|
lookup_class = targets[0].get_lookup('isnull')
|
|
|
|
clause.add(lookup_class(Col(alias, targets[0], sources[0]), False), AND)
|
2013-11-05 00:04:57 +08:00
|
|
|
return clause, used_joins if not require_outer else ()
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
|
|
|
|
def add_filter(self, filter_clause):
|
2013-11-05 00:04:57 +08:00
|
|
|
self.add_q(Q(**{filter_clause[0]: filter_clause[1]}))
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
|
|
|
|
def need_having(self, obj):
|
|
|
|
"""
|
|
|
|
Returns whether or not all elements of this q_object need to be put
|
|
|
|
together in the HAVING clause.
|
|
|
|
"""
|
2013-12-25 21:13:18 +08:00
|
|
|
if not self._annotations:
|
2013-08-21 19:25:19 +08:00
|
|
|
return False
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
if not isinstance(obj, Node):
|
2013-12-25 21:13:18 +08:00
|
|
|
return (refs_aggregate(obj[0].split(LOOKUP_SEP), self.annotations)[0]
|
|
|
|
or (hasattr(obj[1], 'refs_aggregate')
|
|
|
|
and obj[1].refs_aggregate(self.annotations)[0]))
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
return any(self.need_having(c) for c in obj.children)
|
|
|
|
|
|
|
|
def split_having_parts(self, q_object, negated=False):
|
|
|
|
"""
|
|
|
|
Returns a list of q_objects which need to go into the having clause
|
|
|
|
instead of the where clause. Removes the splitted out nodes from the
|
|
|
|
given q_object. Note that the q_object is altered, so cloning it is
|
|
|
|
needed.
|
|
|
|
"""
|
|
|
|
having_parts = []
|
|
|
|
for c in q_object.children[:]:
|
2014-04-27 01:18:45 +08:00
|
|
|
# When constructing the having nodes we need to take care to
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
# preserve the negation status from the upper parts of the tree
|
|
|
|
if isinstance(c, Node):
|
|
|
|
# For each negated child, flip the in_negated flag.
|
|
|
|
in_negated = c.negated ^ negated
|
|
|
|
if c.connector == OR and self.need_having(c):
|
|
|
|
# A subtree starting from OR clause must go into having in
|
|
|
|
# whole if any part of that tree references an aggregate.
|
|
|
|
q_object.children.remove(c)
|
|
|
|
having_parts.append(c)
|
|
|
|
c.negated = in_negated
|
|
|
|
else:
|
|
|
|
having_parts.extend(
|
|
|
|
self.split_having_parts(c, in_negated)[1])
|
|
|
|
elif self.need_having(c):
|
|
|
|
q_object.children.remove(c)
|
|
|
|
new_q = self.where_class(children=[c], negated=negated)
|
|
|
|
having_parts.append(new_q)
|
|
|
|
return q_object, having_parts
|
|
|
|
|
|
|
|
def add_q(self, q_object):
|
|
|
|
"""
|
|
|
|
A preprocessor for the internal _add_q(). Responsible for
|
|
|
|
splitting the given q_object into where and having parts and
|
|
|
|
setting up some internal variables.
|
|
|
|
"""
|
|
|
|
if not self.need_having(q_object):
|
|
|
|
where_part, having_parts = q_object, []
|
|
|
|
else:
|
|
|
|
where_part, having_parts = self.split_having_parts(
|
|
|
|
q_object.clone(), q_object.negated)
|
2013-11-05 00:04:57 +08:00
|
|
|
# For join promotion this case is doing an AND for the added q_object
|
|
|
|
# and existing conditions. So, any existing inner join forces the join
|
2013-11-30 17:19:24 +08:00
|
|
|
# type to remain inner. Existing outer joins can however be demoted.
|
2013-11-05 00:04:57 +08:00
|
|
|
# (Consider case where rel_a is LOUTER and rel_a__col=1 is added - if
|
|
|
|
# rel_a doesn't produce any rows, then the whole condition must fail.
|
|
|
|
# So, demotion is OK.
|
|
|
|
existing_inner = set(
|
2014-11-17 16:26:10 +08:00
|
|
|
(a for a in self.alias_map if self.alias_map[a].join_type == INNER))
|
2013-11-05 00:04:57 +08:00
|
|
|
clause, require_inner = self._add_q(where_part, self.used_aliases)
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
self.where.add(clause, AND)
|
|
|
|
for hp in having_parts:
|
2013-11-05 00:04:57 +08:00
|
|
|
clause, _ = self._add_q(hp, self.used_aliases)
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
self.having.add(clause, AND)
|
2013-11-05 00:04:57 +08:00
|
|
|
self.demote_joins(existing_inner)
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
def _add_q(self, q_object, used_aliases, branch_negated=False,
|
|
|
|
current_negated=False):
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
"""
|
|
|
|
Adds a Q-object to the current filter.
|
|
|
|
"""
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
connector = q_object.connector
|
|
|
|
current_negated = current_negated ^ q_object.negated
|
|
|
|
branch_negated = branch_negated or q_object.negated
|
|
|
|
target_clause = self.where_class(connector=connector,
|
|
|
|
negated=q_object.negated)
|
2014-01-09 01:35:47 +08:00
|
|
|
joinpromoter = JoinPromoter(q_object.connector, len(q_object.children), current_negated)
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
for child in q_object.children:
|
|
|
|
if isinstance(child, Node):
|
2013-11-05 00:04:57 +08:00
|
|
|
child_clause, needed_inner = self._add_q(
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
child, used_aliases, branch_negated,
|
|
|
|
current_negated)
|
2013-11-05 00:04:57 +08:00
|
|
|
joinpromoter.add_votes(needed_inner)
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
else:
|
2013-11-05 00:04:57 +08:00
|
|
|
child_clause, needed_inner = self.build_filter(
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
child, can_reuse=used_aliases, branch_negated=branch_negated,
|
2013-09-25 00:37:55 +08:00
|
|
|
current_negated=current_negated, connector=connector)
|
2013-11-05 00:04:57 +08:00
|
|
|
joinpromoter.add_votes(needed_inner)
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
target_clause.add(child_clause, connector)
|
2013-11-05 00:04:57 +08:00
|
|
|
needed_inner = joinpromoter.update_join_types(self)
|
|
|
|
return target_clause, needed_inner
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
2014-01-18 17:09:43 +08:00
|
|
|
def names_to_path(self, names, opts, allow_many=True, fail_on_missing=False):
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
"""
|
2014-11-12 17:29:06 +08:00
|
|
|
Walks the list of names and turns them into PathInfo tuples. Note that
|
|
|
|
a single name in 'names' can generate multiple PathInfos (m2m for
|
2012-08-25 21:33:07 +08:00
|
|
|
example).
|
2012-11-24 22:19:55 +08:00
|
|
|
|
2013-11-30 17:19:24 +08:00
|
|
|
'names' is the path of names to travel, 'opts' is the model Options we
|
2013-06-19 02:14:07 +08:00
|
|
|
start the name resolving from, 'allow_many' is as for setup_joins().
|
2014-11-12 17:29:06 +08:00
|
|
|
If fail_on_missing is set to True, then a name that can't be resolved
|
|
|
|
will generate a FieldError.
|
2012-11-24 22:19:55 +08:00
|
|
|
|
2012-08-25 21:33:07 +08:00
|
|
|
Returns a list of PathInfo tuples. In addition returns the final field
|
|
|
|
(the last used join field), and target (which is a field guaranteed to
|
2014-11-12 17:29:06 +08:00
|
|
|
contain the same value as the final field). Finally, the method returns
|
|
|
|
those names that weren't found (which are likely transforms and the
|
|
|
|
final lookup).
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
"""
|
2013-02-18 07:56:24 +08:00
|
|
|
path, names_with_path = [], []
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
for pos, name in enumerate(names):
|
2014-01-21 00:28:16 +08:00
|
|
|
cur_names_with_path = (name, [])
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
if name == 'pk':
|
|
|
|
name = opts.pk.name
|
|
|
|
try:
|
2013-12-25 21:13:18 +08:00
|
|
|
field, model, _, _ = opts.get_field_by_name(name)
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
except FieldDoesNotExist:
|
2013-12-25 21:13:18 +08:00
|
|
|
# is it an annotation?
|
|
|
|
if self._annotations and name in self._annotations:
|
|
|
|
field, model = self._annotations[name], None
|
|
|
|
if not field.contains_aggregate:
|
|
|
|
# Local non-relational field.
|
|
|
|
final_field = field
|
|
|
|
targets = (field,)
|
|
|
|
break
|
2014-09-07 06:13:46 +08:00
|
|
|
# We didn't find the current field, so move position back
|
2014-01-18 17:09:43 +08:00
|
|
|
# one step.
|
|
|
|
pos -= 1
|
2014-09-07 06:13:46 +08:00
|
|
|
if pos == -1 or fail_on_missing:
|
2013-12-25 21:13:18 +08:00
|
|
|
available = opts.get_all_field_names() + list(self.annotation_select)
|
2014-09-07 06:13:46 +08:00
|
|
|
raise FieldError("Cannot resolve keyword %r into field. "
|
|
|
|
"Choices are: %s" % (name, ", ".join(available)))
|
2014-01-18 17:09:43 +08:00
|
|
|
break
|
2012-08-25 21:33:07 +08:00
|
|
|
# Check if we need any joins for concrete inheritance cases (the
|
|
|
|
# field lives in parent, but we are currently in one of its
|
|
|
|
# children)
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
if model:
|
|
|
|
# The field lives on a base class of the current model.
|
2009-05-29 12:35:10 +08:00
|
|
|
# Skip the chain of proxy to the concrete proxied model
|
2012-02-22 13:26:50 +08:00
|
|
|
proxied_model = opts.concrete_model
|
2009-05-11 18:10:03 +08:00
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
for int_model in opts.get_base_chain(model):
|
2009-03-18 17:47:08 +08:00
|
|
|
if int_model is proxied_model:
|
|
|
|
opts = int_model._meta
|
|
|
|
else:
|
2012-08-25 21:33:07 +08:00
|
|
|
final_field = opts.parents[int_model]
|
2013-03-25 00:40:40 +08:00
|
|
|
targets = (final_field.rel.get_related_field(),)
|
2009-03-18 17:47:08 +08:00
|
|
|
opts = int_model._meta
|
2013-03-25 00:40:40 +08:00
|
|
|
path.append(PathInfo(final_field.model._meta, opts, targets, final_field, False, True))
|
2014-09-04 20:15:09 +08:00
|
|
|
cur_names_with_path[1].append(
|
|
|
|
PathInfo(final_field.model._meta, opts, targets, final_field, False, True)
|
|
|
|
)
|
2012-12-17 23:09:07 +08:00
|
|
|
if hasattr(field, 'get_path_info'):
|
2013-03-25 00:40:40 +08:00
|
|
|
pathinfos = field.get_path_info()
|
2013-02-18 07:56:24 +08:00
|
|
|
if not allow_many:
|
|
|
|
for inner_pos, p in enumerate(pathinfos):
|
|
|
|
if p.m2m:
|
2014-01-21 00:28:16 +08:00
|
|
|
cur_names_with_path[1].extend(pathinfos[0:inner_pos + 1])
|
|
|
|
names_with_path.append(cur_names_with_path)
|
2013-02-18 07:56:24 +08:00
|
|
|
raise MultiJoin(pos + 1, names_with_path)
|
2013-03-25 00:40:40 +08:00
|
|
|
last = pathinfos[-1]
|
2012-12-17 23:09:07 +08:00
|
|
|
path.extend(pathinfos)
|
2013-03-25 00:40:40 +08:00
|
|
|
final_field = last.join_field
|
|
|
|
opts = last.to_opts
|
|
|
|
targets = last.target_fields
|
2014-01-21 00:28:16 +08:00
|
|
|
cur_names_with_path[1].extend(pathinfos)
|
|
|
|
names_with_path.append(cur_names_with_path)
|
2012-12-17 23:09:07 +08:00
|
|
|
else:
|
2012-08-25 21:33:07 +08:00
|
|
|
# Local non-relational field.
|
2013-03-25 00:40:40 +08:00
|
|
|
final_field = field
|
|
|
|
targets = (field,)
|
2014-09-07 06:13:46 +08:00
|
|
|
if fail_on_missing and pos + 1 != len(names):
|
|
|
|
raise FieldError(
|
|
|
|
"Cannot resolve keyword %r into field. Join on '%s'"
|
|
|
|
" not permitted." % (names[pos + 1], name))
|
2012-08-25 21:33:07 +08:00
|
|
|
break
|
2014-01-18 17:09:43 +08:00
|
|
|
return path, final_field, targets, names[pos + 1:]
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
2013-12-25 21:13:18 +08:00
|
|
|
def raise_field_error(self, opts, name):
|
|
|
|
available = opts.get_all_field_names() + list(self.annotation_select)
|
|
|
|
raise FieldError("Cannot resolve keyword %r into field. "
|
|
|
|
"Choices are: %s" % (name, ", ".join(available)))
|
|
|
|
|
2013-11-07 03:31:19 +08:00
|
|
|
def setup_joins(self, names, opts, alias, can_reuse=None, allow_many=True):
|
2009-03-06 10:02:09 +08:00
|
|
|
"""
|
2012-08-25 21:33:07 +08:00
|
|
|
Compute the necessary table joins for the passage through the fields
|
|
|
|
given in 'names'. 'opts' is the Options class for the current model
|
|
|
|
(which gives the table we are starting from), 'alias' is the alias for
|
|
|
|
the table to start the joining from.
|
|
|
|
|
|
|
|
The 'can_reuse' defines the reverse foreign key joins we can reuse. It
|
2012-12-21 03:25:48 +08:00
|
|
|
can be None in which case all joins are reusable or a set of aliases
|
|
|
|
that can be reused. Note that non-reverse foreign keys are always
|
|
|
|
reusable when using setup_joins().
|
2012-08-25 21:33:07 +08:00
|
|
|
|
|
|
|
If 'allow_many' is False, then any reverse foreign key seen will
|
|
|
|
generate a MultiJoin exception.
|
|
|
|
|
|
|
|
Returns the final field involved in the joins, the target field (used
|
|
|
|
for any 'where' constraint), the final 'opts' value, the joins and the
|
|
|
|
field path travelled to generate the joins.
|
2009-03-06 10:02:09 +08:00
|
|
|
|
2012-08-25 21:33:07 +08:00
|
|
|
The target field is the field containing the concrete value. Final
|
|
|
|
field can be something different, for example foreign key pointing to
|
|
|
|
that value. Final field is needed for example in some value
|
|
|
|
conversions (convert 'obj' in fk__id=obj to pk val using the foreign
|
|
|
|
key field for example).
|
|
|
|
"""
|
|
|
|
joins = [alias]
|
|
|
|
# First, generate the path for the names
|
2014-01-18 17:09:43 +08:00
|
|
|
path, final_field, targets, rest = self.names_to_path(
|
|
|
|
names, opts, allow_many, fail_on_missing=True)
|
|
|
|
|
2012-08-25 21:33:07 +08:00
|
|
|
# Then, add the path to the query's joins. Note that we can't trim
|
|
|
|
# joins at this stage - we will need the information about join type
|
|
|
|
# of the trimmed joins.
|
2014-11-12 19:22:08 +08:00
|
|
|
for join in path:
|
2012-12-17 23:09:07 +08:00
|
|
|
opts = join.to_opts
|
|
|
|
if join.direct:
|
2013-03-25 00:40:40 +08:00
|
|
|
nullable = self.is_nullable(join.join_field)
|
2012-08-25 21:33:07 +08:00
|
|
|
else:
|
|
|
|
nullable = True
|
2014-11-17 16:26:10 +08:00
|
|
|
connection = Join(opts.db_table, alias, None, INNER, join.join_field, nullable)
|
2012-12-17 23:09:07 +08:00
|
|
|
reuse = can_reuse if join.m2m else None
|
2014-11-17 16:26:10 +08:00
|
|
|
alias = self.join(connection, reuse=reuse)
|
2012-08-25 21:33:07 +08:00
|
|
|
joins.append(alias)
|
2014-05-05 20:22:01 +08:00
|
|
|
if hasattr(final_field, 'field'):
|
|
|
|
final_field = final_field.field
|
2013-03-25 00:40:40 +08:00
|
|
|
return final_field, targets, opts, joins, path
|
2009-03-06 10:02:09 +08:00
|
|
|
|
2013-03-25 00:40:40 +08:00
|
|
|
def trim_joins(self, targets, joins, path):
|
2012-08-25 21:33:07 +08:00
|
|
|
"""
|
|
|
|
The 'target' parameter is the final field being joined to, 'joins'
|
|
|
|
is the full list of join aliases. The 'path' contain the PathInfos
|
|
|
|
used to create the joins.
|
2011-08-23 11:38:42 +08:00
|
|
|
|
2013-02-19 10:21:29 +08:00
|
|
|
Returns the final target field and table alias and the new active
|
2012-08-25 21:33:07 +08:00
|
|
|
joins.
|
|
|
|
|
|
|
|
We will always trim any direct join if we have the target column
|
|
|
|
available already in the previous table. Reverse joins can't be
|
|
|
|
trimmed as we don't know if there is anything on the other side of
|
|
|
|
the join.
|
|
|
|
"""
|
2013-11-05 00:04:57 +08:00
|
|
|
joins = joins[:]
|
2013-03-25 00:40:40 +08:00
|
|
|
for pos, info in enumerate(reversed(path)):
|
|
|
|
if len(joins) == 1 or not info.direct:
|
2009-01-15 19:06:34 +08:00
|
|
|
break
|
2013-03-25 00:40:40 +08:00
|
|
|
join_targets = set(t.column for t in info.join_field.foreign_related_fields)
|
|
|
|
cur_targets = set(t.column for t in targets)
|
|
|
|
if not cur_targets.issubset(join_targets):
|
|
|
|
break
|
|
|
|
targets = tuple(r[0] for r in info.join_field.related_fields if r[1].column in cur_targets)
|
|
|
|
self.unref_alias(joins.pop())
|
|
|
|
return targets, joins[-1], joins
|
2009-01-15 19:06:34 +08:00
|
|
|
|
2013-12-25 21:13:18 +08:00
|
|
|
def resolve_ref(self, name, allow_joins, reuse, summarize):
|
|
|
|
if not allow_joins and LOOKUP_SEP in name:
|
|
|
|
raise FieldError("Joined field references are not permitted in this query")
|
|
|
|
if name in self.annotations:
|
|
|
|
if summarize:
|
2014-11-20 20:30:25 +08:00
|
|
|
# Summarize currently means we are doing an aggregate() query
|
|
|
|
# which is executed as a wrapped subquery if any of the
|
|
|
|
# aggregate() elements reference an existing annotation. In
|
|
|
|
# that case we need to return a Ref to the subquery's annotation.
|
2013-12-25 21:13:18 +08:00
|
|
|
return Ref(name, self.annotation_select[name])
|
|
|
|
else:
|
|
|
|
return self.annotation_select[name]
|
|
|
|
else:
|
|
|
|
field_list = name.split(LOOKUP_SEP)
|
|
|
|
field, sources, opts, join_list, path = self.setup_joins(
|
|
|
|
field_list, self.get_meta(),
|
|
|
|
self.get_initial_alias(), reuse)
|
|
|
|
targets, _, join_list = self.trim_joins(sources, join_list, path)
|
|
|
|
if len(targets) > 1:
|
|
|
|
raise FieldError("Referencing multicolumn fields with F() objects "
|
|
|
|
"isn't supported")
|
|
|
|
if reuse is not None:
|
|
|
|
reuse.update(join_list)
|
|
|
|
col = Col(join_list[-1], targets[0], sources[0])
|
|
|
|
col._used_joins = join_list
|
|
|
|
return col
|
|
|
|
|
2013-02-18 07:56:24 +08:00
|
|
|
def split_exclude(self, filter_expr, prefix, can_reuse, names_with_path):
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
"""
|
|
|
|
When doing an exclude against any kind of N-to-many relation, we need
|
|
|
|
to use a subquery. This method constructs the nested query, given the
|
|
|
|
original exclude filter (filter_expr) and the portion up to the first
|
|
|
|
N-to-many relation field.
|
2012-08-21 04:03:58 +08:00
|
|
|
|
|
|
|
As an example we could have original filter ~Q(child__name='foo').
|
2013-02-18 07:56:24 +08:00
|
|
|
We would get here with filter_expr = child__name, prefix = child and
|
|
|
|
can_reuse is a set of joins usable for filters in the original query.
|
2012-08-21 04:03:58 +08:00
|
|
|
|
2013-02-18 07:56:24 +08:00
|
|
|
We will turn this into equivalent of:
|
2013-02-19 10:21:29 +08:00
|
|
|
WHERE NOT (pk IN (SELECT parent_id FROM thetable
|
|
|
|
WHERE name = 'foo' AND parent_id IS NOT NULL))
|
2012-08-21 04:03:58 +08:00
|
|
|
|
|
|
|
It might be worth it to consider using WHERE NOT EXISTS as that has
|
|
|
|
saner null handling, and is easier for the backend's optimizer to
|
|
|
|
handle.
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
"""
|
2013-02-18 07:56:24 +08:00
|
|
|
# Generate the inner query.
|
2009-12-22 23:18:51 +08:00
|
|
|
query = Query(self.model)
|
2013-09-25 00:37:55 +08:00
|
|
|
query.add_filter(filter_expr)
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
query.clear_ordering(True)
|
2013-02-18 07:56:24 +08:00
|
|
|
# Try to have as simple as possible subquery -> trim leading joins from
|
|
|
|
# the subquery.
|
2013-06-06 05:29:44 +08:00
|
|
|
trimmed_prefix, contains_louter = query.trim_start(names_with_path)
|
|
|
|
query.remove_inherited_models()
|
|
|
|
|
2013-02-18 07:56:24 +08:00
|
|
|
# Add extra check to make sure the selected field will not be null
|
2014-05-29 08:39:14 +08:00
|
|
|
# since we are adding an IN <subquery> clause. This prevents the
|
2011-02-08 22:06:02 +08:00
|
|
|
# database from tripping over IN (...,NULL,...) selects and returning
|
|
|
|
# nothing
|
2013-11-03 04:35:45 +08:00
|
|
|
alias, col = query.select[0].col
|
2013-02-19 10:21:29 +08:00
|
|
|
if self.is_nullable(query.select[0].field):
|
2014-01-18 17:09:43 +08:00
|
|
|
lookup_class = query.select[0].field.get_lookup('isnull')
|
|
|
|
lookup = lookup_class(Col(alias, query.select[0].field, query.select[0].field), False)
|
|
|
|
query.where.add(lookup, AND)
|
2013-11-03 04:35:45 +08:00
|
|
|
if alias in can_reuse:
|
2014-01-18 17:09:43 +08:00
|
|
|
select_field = query.select[0].field
|
|
|
|
pk = select_field.model._meta.pk
|
2013-11-03 04:35:45 +08:00
|
|
|
# Need to add a restriction so that outer query's filters are in effect for
|
|
|
|
# the subquery, too.
|
|
|
|
query.bump_prefix(self)
|
2014-01-18 17:09:43 +08:00
|
|
|
lookup_class = select_field.get_lookup('exact')
|
|
|
|
lookup = lookup_class(Col(query.select[0].col[0], pk, pk),
|
|
|
|
Col(alias, pk, pk))
|
|
|
|
query.where.add(lookup, AND)
|
2014-10-07 21:07:46 +08:00
|
|
|
query.external_aliases.add(alias)
|
2011-02-08 22:06:02 +08:00
|
|
|
|
2013-11-05 00:04:57 +08:00
|
|
|
condition, needed_inner = self.build_filter(
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
('%s__in' % trimmed_prefix, query),
|
|
|
|
current_negated=True, branch_negated=True, can_reuse=can_reuse)
|
2013-06-06 05:29:44 +08:00
|
|
|
if contains_louter:
|
2013-11-05 00:04:57 +08:00
|
|
|
or_null_condition, _ = self.build_filter(
|
2013-06-06 05:29:44 +08:00
|
|
|
('%s__isnull' % trimmed_prefix, True),
|
|
|
|
current_negated=True, branch_negated=True, can_reuse=can_reuse)
|
|
|
|
condition.add(or_null_condition, OR)
|
|
|
|
# Note that the end result will be:
|
|
|
|
# (outercol NOT IN innerq AND outercol IS NOT NULL) OR outercol IS NULL.
|
|
|
|
# This might look crazy but due to how IN works, this seems to be
|
|
|
|
# correct. If the IS NOT NULL check is removed then outercol NOT
|
|
|
|
# IN will return UNKNOWN. If the IS NULL check is removed, then if
|
|
|
|
# outercol IS NULL we will not match the row.
|
2013-11-05 00:04:57 +08:00
|
|
|
return condition, needed_inner
|
2013-02-18 07:56:24 +08:00
|
|
|
|
2012-10-24 05:04:37 +08:00
|
|
|
def set_empty(self):
|
|
|
|
self.where = EmptyWhere()
|
|
|
|
self.having = EmptyWhere()
|
|
|
|
|
|
|
|
def is_empty(self):
|
|
|
|
return isinstance(self.where, EmptyWhere) or isinstance(self.having, EmptyWhere)
|
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
def set_limits(self, low=None, high=None):
|
|
|
|
"""
|
|
|
|
Adjusts the limits on the rows retrieved. We use low/high to set these,
|
|
|
|
as it makes it more Pythonic to read and write. When the SQL query is
|
|
|
|
created, they are converted to the appropriate offset and limit values.
|
|
|
|
|
|
|
|
Any limits passed in here are applied relative to the existing
|
|
|
|
constraints. So low is added to the current low value and both will be
|
|
|
|
clamped to any existing high value.
|
|
|
|
"""
|
2008-07-11 20:43:27 +08:00
|
|
|
if high is not None:
|
2008-10-08 16:37:35 +08:00
|
|
|
if self.high_mark is not None:
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
self.high_mark = min(self.high_mark, self.low_mark + high)
|
|
|
|
else:
|
|
|
|
self.high_mark = self.low_mark + high
|
2008-07-11 20:43:27 +08:00
|
|
|
if low is not None:
|
2008-10-08 16:37:35 +08:00
|
|
|
if self.high_mark is not None:
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
self.low_mark = min(self.high_mark, self.low_mark + low)
|
|
|
|
else:
|
|
|
|
self.low_mark = self.low_mark + low
|
|
|
|
|
|
|
|
def clear_limits(self):
|
|
|
|
"""
|
|
|
|
Clears any existing limits.
|
|
|
|
"""
|
|
|
|
self.low_mark, self.high_mark = 0, None
|
|
|
|
|
|
|
|
def can_filter(self):
|
|
|
|
"""
|
|
|
|
Returns True if adding filters to this instance is still possible.
|
|
|
|
|
|
|
|
Typically, this means no limits or offsets have been put on the results.
|
|
|
|
"""
|
2009-03-01 09:24:03 +08:00
|
|
|
return not self.low_mark and self.high_mark is None
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
2012-10-10 20:58:39 +08:00
|
|
|
def clear_select_clause(self):
|
|
|
|
"""
|
|
|
|
Removes all fields from SELECT clause.
|
|
|
|
"""
|
|
|
|
self.select = []
|
|
|
|
self.default_cols = False
|
|
|
|
self.select_related = False
|
|
|
|
self.set_extra_mask(())
|
2013-12-25 21:13:18 +08:00
|
|
|
self.set_annotation_mask(())
|
2012-10-10 20:58:39 +08:00
|
|
|
|
2009-01-08 13:49:03 +08:00
|
|
|
def clear_select_fields(self):
|
|
|
|
"""
|
|
|
|
Clears the list of fields to select (but not extra_select columns).
|
|
|
|
Some queryset types completely replace any existing list of select
|
|
|
|
columns.
|
|
|
|
"""
|
|
|
|
self.select = []
|
|
|
|
|
2011-12-23 04:42:40 +08:00
|
|
|
def add_distinct_fields(self, *field_names):
|
|
|
|
"""
|
|
|
|
Adds and resolves the given fields to the query's "distinct on" clause.
|
|
|
|
"""
|
|
|
|
self.distinct_fields = field_names
|
|
|
|
self.distinct = True
|
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
def add_fields(self, field_names, allow_m2m=True):
|
|
|
|
"""
|
|
|
|
Adds the given (model) fields to the select set. The field names are
|
|
|
|
added in the order specified.
|
|
|
|
"""
|
|
|
|
alias = self.get_initial_alias()
|
|
|
|
opts = self.get_meta()
|
2009-01-15 19:06:34 +08:00
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
try:
|
|
|
|
for name in field_names:
|
2013-09-25 00:37:55 +08:00
|
|
|
# Join promotion note - we must not remove any rows here, so
|
|
|
|
# if there is no existing joins, use outer join.
|
2014-06-13 16:12:31 +08:00
|
|
|
_, targets, _, joins, path = self.setup_joins(
|
|
|
|
name.split(LOOKUP_SEP), opts, alias, allow_many=allow_m2m)
|
2013-09-25 00:37:55 +08:00
|
|
|
targets, final_alias, joins = self.trim_joins(targets, joins, path)
|
2013-03-25 00:40:40 +08:00
|
|
|
for target in targets:
|
|
|
|
self.select.append(SelectInfo((final_alias, target.column), target))
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
except MultiJoin:
|
|
|
|
raise FieldError("Invalid field name: '%s'" % name)
|
|
|
|
except FieldError:
|
2012-07-17 22:01:01 +08:00
|
|
|
if LOOKUP_SEP in name:
|
2012-07-17 17:24:56 +08:00
|
|
|
# For lookups spanning over relationships, show the error
|
|
|
|
# from the model on which the lookup failed.
|
|
|
|
raise
|
|
|
|
else:
|
2012-08-08 22:33:15 +08:00
|
|
|
names = sorted(opts.get_all_field_names() + list(self.extra)
|
2013-12-25 21:13:18 +08:00
|
|
|
+ list(self.annotation_select))
|
2012-07-17 17:24:56 +08:00
|
|
|
raise FieldError("Cannot resolve keyword %r into field. "
|
|
|
|
"Choices are: %s" % (name, ", ".join(names)))
|
2009-03-04 13:34:01 +08:00
|
|
|
self.remove_inherited_models()
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
|
|
|
def add_ordering(self, *ordering):
|
|
|
|
"""
|
|
|
|
Adds items from the 'ordering' sequence to the query's "order by"
|
|
|
|
clause. These items are either field names (not column names) --
|
|
|
|
possibly with a direction prefix ('-' or '?') -- or ordinals,
|
|
|
|
corresponding to column positions in the 'select' list.
|
|
|
|
|
|
|
|
If 'ordering' is empty, all ordering is cleared from the query.
|
|
|
|
"""
|
|
|
|
errors = []
|
|
|
|
for item in ordering:
|
|
|
|
if not ORDER_PATTERN.match(item):
|
|
|
|
errors.append(item)
|
|
|
|
if errors:
|
|
|
|
raise FieldError('Invalid order_by arguments: %s' % errors)
|
|
|
|
if ordering:
|
|
|
|
self.order_by.extend(ordering)
|
|
|
|
else:
|
|
|
|
self.default_ordering = False
|
|
|
|
|
2013-02-11 02:52:52 +08:00
|
|
|
def clear_ordering(self, force_empty):
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
"""
|
|
|
|
Removes any ordering settings. If 'force_empty' is True, there will be
|
|
|
|
no ordering in the resulting query (not even the model's default).
|
|
|
|
"""
|
|
|
|
self.order_by = []
|
|
|
|
self.extra_order_by = ()
|
|
|
|
if force_empty:
|
|
|
|
self.default_ordering = False
|
|
|
|
|
2009-01-15 19:06:34 +08:00
|
|
|
def set_group_by(self):
|
|
|
|
"""
|
|
|
|
Expands the GROUP BY clause required by the query.
|
|
|
|
|
|
|
|
This will usually be the set of all non-aggregate fields in the
|
|
|
|
return data. If the database backend supports grouping by the
|
|
|
|
primary key, and the query would be equivalent, the optimization
|
|
|
|
will be made automatically.
|
|
|
|
"""
|
2009-02-16 20:29:31 +08:00
|
|
|
self.group_by = []
|
2009-01-15 19:06:34 +08:00
|
|
|
|
2012-10-26 01:57:32 +08:00
|
|
|
for col, _ in self.select:
|
|
|
|
self.group_by.append(col)
|
2009-01-15 19:06:34 +08:00
|
|
|
|
2013-12-25 21:13:18 +08:00
|
|
|
if self._annotations:
|
|
|
|
for alias, annotation in six.iteritems(self.annotations):
|
|
|
|
for col in annotation.get_group_by_cols():
|
|
|
|
self.group_by.append(col)
|
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
def add_select_related(self, fields):
|
|
|
|
"""
|
|
|
|
Sets up the select_related data structure so that we only select
|
|
|
|
certain related models (as opposed to all models, when
|
|
|
|
self.select_related=True).
|
|
|
|
"""
|
2013-10-15 20:15:02 +08:00
|
|
|
if isinstance(self.select_related, bool):
|
|
|
|
field_dict = {}
|
|
|
|
else:
|
|
|
|
field_dict = self.select_related
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
for field in fields:
|
|
|
|
d = field_dict
|
|
|
|
for part in field.split(LOOKUP_SEP):
|
|
|
|
d = d.setdefault(part, {})
|
|
|
|
self.select_related = field_dict
|
|
|
|
self.related_select_cols = []
|
|
|
|
|
|
|
|
def add_extra(self, select, select_params, where, params, tables, order_by):
|
|
|
|
"""
|
|
|
|
Adds data to the various extra_* attributes for user-created additions
|
|
|
|
to the query.
|
|
|
|
"""
|
|
|
|
if select:
|
2008-08-18 04:07:59 +08:00
|
|
|
# We need to pair any placeholder markers in the 'select'
|
|
|
|
# dictionary with their parameters in 'select_params' so that
|
|
|
|
# subsequent updates to the select dictionary also adjust the
|
|
|
|
# parameters appropriately.
|
2013-08-03 13:41:15 +08:00
|
|
|
select_pairs = OrderedDict()
|
2008-08-18 04:07:59 +08:00
|
|
|
if select_params:
|
|
|
|
param_iter = iter(select_params)
|
|
|
|
else:
|
|
|
|
param_iter = iter([])
|
|
|
|
for name, entry in select.items():
|
2012-07-21 16:00:10 +08:00
|
|
|
entry = force_text(entry)
|
2008-08-18 04:07:59 +08:00
|
|
|
entry_params = []
|
|
|
|
pos = entry.find("%s")
|
|
|
|
while pos != -1:
|
2014-09-10 15:23:58 +08:00
|
|
|
if pos == 0 or entry[pos - 1] != '%':
|
|
|
|
entry_params.append(next(param_iter))
|
2008-08-18 04:07:59 +08:00
|
|
|
pos = entry.find("%s", pos + 2)
|
|
|
|
select_pairs[name] = (entry, entry_params)
|
2013-08-03 13:41:15 +08:00
|
|
|
# This is order preserving, since self.extra_select is an OrderedDict.
|
2009-04-30 23:40:09 +08:00
|
|
|
self.extra.update(select_pairs)
|
2010-02-23 12:39:39 +08:00
|
|
|
if where or params:
|
|
|
|
self.where.add(ExtraWhere(where, params), AND)
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
if tables:
|
|
|
|
self.extra_tables += tuple(tables)
|
|
|
|
if order_by:
|
|
|
|
self.extra_order_by = order_by
|
|
|
|
|
2009-03-19 17:06:04 +08:00
|
|
|
def clear_deferred_loading(self):
|
|
|
|
"""
|
|
|
|
Remove any fields from the deferred loading set.
|
|
|
|
"""
|
|
|
|
self.deferred_loading = (set(), True)
|
|
|
|
|
|
|
|
def add_deferred_loading(self, field_names):
|
|
|
|
"""
|
|
|
|
Add the given list of model field names to the set of fields to
|
|
|
|
exclude from loading from the database when automatic column selection
|
|
|
|
is done. The new field names are added to any existing field names that
|
|
|
|
are deferred (or removed from any existing field names that are marked
|
|
|
|
as the only ones for immediate loading).
|
|
|
|
"""
|
|
|
|
# Fields on related models are stored in the literal double-underscore
|
|
|
|
# format, so that we can use a set datastructure. We do the foo__bar
|
2014-03-02 22:25:53 +08:00
|
|
|
# splitting and handling when computing the SQL column names (as part of
|
2009-03-19 17:06:04 +08:00
|
|
|
# get_columns()).
|
|
|
|
existing, defer = self.deferred_loading
|
|
|
|
if defer:
|
|
|
|
# Add to existing deferred names.
|
|
|
|
self.deferred_loading = existing.union(field_names), True
|
|
|
|
else:
|
|
|
|
# Remove names from the set of any existing "immediate load" names.
|
|
|
|
self.deferred_loading = existing.difference(field_names), False
|
|
|
|
|
|
|
|
def add_immediate_loading(self, field_names):
|
|
|
|
"""
|
|
|
|
Add the given list of model field names to the set of fields to
|
|
|
|
retrieve when the SQL is executed ("immediate loading" fields). The
|
|
|
|
field names replace any existing immediate loading field names. If
|
|
|
|
there are field names already specified for deferred loading, those
|
|
|
|
names are removed from the new field_names before storing the new names
|
|
|
|
for immediate loading. (That is, immediate loading overrides any
|
|
|
|
existing immediate values, but respects existing deferrals.)
|
|
|
|
"""
|
|
|
|
existing, defer = self.deferred_loading
|
2011-08-23 14:29:01 +08:00
|
|
|
field_names = set(field_names)
|
|
|
|
if 'pk' in field_names:
|
|
|
|
field_names.remove('pk')
|
2013-05-14 03:40:39 +08:00
|
|
|
field_names.add(self.get_meta().pk.name)
|
2011-08-23 14:29:01 +08:00
|
|
|
|
2009-03-19 17:06:04 +08:00
|
|
|
if defer:
|
|
|
|
# Remove any existing deferred names from the current set before
|
|
|
|
# setting the new names.
|
2011-08-23 14:29:01 +08:00
|
|
|
self.deferred_loading = field_names.difference(existing), False
|
2009-03-19 17:06:04 +08:00
|
|
|
else:
|
|
|
|
# Replace any existing "immediate load" field names.
|
2011-08-23 14:29:01 +08:00
|
|
|
self.deferred_loading = field_names, False
|
2009-03-19 17:06:04 +08:00
|
|
|
|
|
|
|
def get_loaded_field_names(self):
|
|
|
|
"""
|
|
|
|
If any fields are marked to be deferred, returns a dictionary mapping
|
|
|
|
models to a set of names in those fields that will be loaded. If a
|
2014-04-27 01:18:45 +08:00
|
|
|
model is not in the returned dictionary, none of its fields are
|
2009-03-19 17:06:04 +08:00
|
|
|
deferred.
|
|
|
|
|
|
|
|
If no fields are marked for deferral, returns an empty dictionary.
|
|
|
|
"""
|
2012-06-26 23:08:42 +08:00
|
|
|
# We cache this because we call this function multiple times
|
|
|
|
# (compiler.fill_related_selections, query.iterator)
|
|
|
|
try:
|
|
|
|
return self._loaded_field_names_cache
|
|
|
|
except AttributeError:
|
|
|
|
collection = {}
|
|
|
|
self.deferred_to_data(collection, self.get_loaded_field_names_cb)
|
|
|
|
self._loaded_field_names_cache = collection
|
|
|
|
return collection
|
2009-03-19 17:06:04 +08:00
|
|
|
|
|
|
|
def get_loaded_field_names_cb(self, target, model, fields):
|
|
|
|
"""
|
|
|
|
Callback used by get_deferred_field_names().
|
|
|
|
"""
|
2013-08-30 07:20:00 +08:00
|
|
|
target[model] = set(f.name for f in fields)
|
2009-03-19 17:06:04 +08:00
|
|
|
|
2009-02-23 22:47:59 +08:00
|
|
|
def set_aggregate_mask(self, names):
|
2013-12-25 21:13:18 +08:00
|
|
|
warnings.warn(
|
|
|
|
"set_aggregate_mask() is deprecated. Use set_annotation_mask() instead.",
|
|
|
|
RemovedInDjango20Warning, stacklevel=2)
|
|
|
|
self.set_annotation_mask(names)
|
|
|
|
|
|
|
|
def set_annotation_mask(self, names):
|
|
|
|
"Set the mask of annotations that will actually be returned by the SELECT"
|
2009-04-30 23:40:09 +08:00
|
|
|
if names is None:
|
2013-12-25 21:13:18 +08:00
|
|
|
self.annotation_select_mask = None
|
2009-04-30 23:40:09 +08:00
|
|
|
else:
|
2013-12-25 21:13:18 +08:00
|
|
|
self.annotation_select_mask = set(names)
|
|
|
|
self._annotation_select_cache = None
|
2009-02-23 22:47:59 +08:00
|
|
|
|
2013-07-23 16:38:38 +08:00
|
|
|
def append_aggregate_mask(self, names):
|
2013-12-25 21:13:18 +08:00
|
|
|
warnings.warn(
|
|
|
|
"append_aggregate_mask() is deprecated. Use append_annotation_mask() instead.",
|
|
|
|
RemovedInDjango20Warning, stacklevel=2)
|
|
|
|
self.append_annotation_mask(names)
|
|
|
|
|
|
|
|
def append_annotation_mask(self, names):
|
|
|
|
if self.annotation_select_mask is not None:
|
|
|
|
self.set_annotation_mask(set(names).union(self.annotation_select_mask))
|
2013-07-23 16:38:38 +08:00
|
|
|
|
2009-04-30 23:40:09 +08:00
|
|
|
def set_extra_mask(self, names):
|
|
|
|
"""
|
|
|
|
Set the mask of extra select items that will be returned by SELECT,
|
|
|
|
we don't actually remove them from the Query since they might be used
|
|
|
|
later
|
|
|
|
"""
|
|
|
|
if names is None:
|
|
|
|
self.extra_select_mask = None
|
|
|
|
else:
|
|
|
|
self.extra_select_mask = set(names)
|
|
|
|
self._extra_select_cache = None
|
|
|
|
|
2013-08-21 19:25:19 +08:00
|
|
|
@property
|
2013-12-25 21:13:18 +08:00
|
|
|
def annotation_select(self):
|
2013-08-03 13:41:15 +08:00
|
|
|
"""The OrderedDict of aggregate columns that are not masked, and should
|
2009-02-23 22:47:59 +08:00
|
|
|
be used in the SELECT clause.
|
|
|
|
|
|
|
|
This result is cached for optimization purposes.
|
|
|
|
"""
|
2013-12-25 21:13:18 +08:00
|
|
|
if self._annotation_select_cache is not None:
|
|
|
|
return self._annotation_select_cache
|
|
|
|
elif not self._annotations:
|
2013-08-21 19:25:19 +08:00
|
|
|
return {}
|
2013-12-25 21:13:18 +08:00
|
|
|
elif self.annotation_select_mask is not None:
|
|
|
|
self._annotation_select_cache = OrderedDict(
|
|
|
|
(k, v) for k, v in self.annotations.items()
|
|
|
|
if k in self.annotation_select_mask
|
2013-08-30 07:20:00 +08:00
|
|
|
)
|
2013-12-25 21:13:18 +08:00
|
|
|
return self._annotation_select_cache
|
2009-02-23 22:47:59 +08:00
|
|
|
else:
|
2013-12-25 21:13:18 +08:00
|
|
|
return self.annotations
|
|
|
|
|
|
|
|
@property
|
|
|
|
def aggregate_select(self):
|
|
|
|
warnings.warn(
|
|
|
|
"aggregate_select() is deprecated. Use annotation_select() instead.",
|
|
|
|
RemovedInDjango20Warning, stacklevel=2)
|
|
|
|
return self.annotation_select
|
2009-02-23 22:47:59 +08:00
|
|
|
|
2013-08-21 19:25:19 +08:00
|
|
|
@property
|
|
|
|
def extra_select(self):
|
2009-04-30 23:40:09 +08:00
|
|
|
if self._extra_select_cache is not None:
|
|
|
|
return self._extra_select_cache
|
2013-08-21 19:25:19 +08:00
|
|
|
if not self._extra:
|
|
|
|
return {}
|
2009-04-30 23:40:09 +08:00
|
|
|
elif self.extra_select_mask is not None:
|
2013-08-30 07:20:00 +08:00
|
|
|
self._extra_select_cache = OrderedDict(
|
2013-07-08 08:39:54 +08:00
|
|
|
(k, v) for k, v in self.extra.items()
|
2009-04-30 23:40:09 +08:00
|
|
|
if k in self.extra_select_mask
|
2013-08-30 07:20:00 +08:00
|
|
|
)
|
2009-04-30 23:40:09 +08:00
|
|
|
return self._extra_select_cache
|
|
|
|
else:
|
|
|
|
return self.extra
|
|
|
|
|
2013-02-18 07:56:24 +08:00
|
|
|
def trim_start(self, names_with_path):
|
|
|
|
"""
|
|
|
|
Trims joins from the start of the join path. The candidates for trim
|
2013-06-06 05:29:44 +08:00
|
|
|
are the PathInfos in names_with_path structure that are m2m joins.
|
|
|
|
|
|
|
|
Also sets the select column so the start matches the join.
|
|
|
|
|
|
|
|
This method is meant to be used for generating the subquery joins &
|
|
|
|
cols in split_exclude().
|
2013-02-18 07:56:24 +08:00
|
|
|
|
2013-06-06 05:29:44 +08:00
|
|
|
Returns a lookup usable for doing outerq.filter(lookup=self). Returns
|
|
|
|
also if the joins in the prefix contain a LEFT OUTER join.
|
2013-02-18 07:56:24 +08:00
|
|
|
_"""
|
2013-03-25 00:40:40 +08:00
|
|
|
all_paths = []
|
2013-02-18 07:56:24 +08:00
|
|
|
for _, paths in names_with_path:
|
2013-03-25 00:40:40 +08:00
|
|
|
all_paths.extend(paths)
|
2013-06-06 05:29:44 +08:00
|
|
|
contains_louter = False
|
2014-04-28 20:27:36 +08:00
|
|
|
# Trim and operate only on tables that were generated for
|
|
|
|
# the lookup part of the query. That is, avoid trimming
|
|
|
|
# joins generated for F() expressions.
|
|
|
|
lookup_tables = [t for t in self.tables if t in self._lookup_joins or t == self.tables[0]]
|
|
|
|
for trimmed_paths, path in enumerate(all_paths):
|
2013-06-06 05:29:44 +08:00
|
|
|
if path.m2m:
|
|
|
|
break
|
2014-11-17 16:26:10 +08:00
|
|
|
if self.alias_map[lookup_tables[trimmed_paths + 1]].join_type == LOUTER:
|
2013-06-06 05:29:44 +08:00
|
|
|
contains_louter = True
|
2014-11-17 16:26:10 +08:00
|
|
|
alias = lookup_tables[trimmed_paths]
|
|
|
|
self.unref_alias(alias)
|
2013-06-06 05:29:44 +08:00
|
|
|
# The path.join_field is a Rel, lets get the other side's field
|
|
|
|
join_field = path.join_field.field
|
|
|
|
# Build the filter prefix.
|
2014-04-28 20:27:36 +08:00
|
|
|
paths_in_prefix = trimmed_paths
|
2013-06-06 05:29:44 +08:00
|
|
|
trimmed_prefix = []
|
|
|
|
for name, path in names_with_path:
|
|
|
|
if paths_in_prefix - len(path) < 0:
|
2013-03-25 00:40:40 +08:00
|
|
|
break
|
2013-06-06 05:29:44 +08:00
|
|
|
trimmed_prefix.append(name)
|
|
|
|
paths_in_prefix -= len(path)
|
|
|
|
trimmed_prefix.append(
|
|
|
|
join_field.foreign_related_fields[0].name)
|
|
|
|
trimmed_prefix = LOOKUP_SEP.join(trimmed_prefix)
|
|
|
|
# Lets still see if we can trim the first join from the inner query
|
|
|
|
# (that is, self). We can't do this for LEFT JOINs because we would
|
|
|
|
# miss those rows that have nothing on the outer side.
|
2014-11-17 16:26:10 +08:00
|
|
|
if self.alias_map[lookup_tables[trimmed_paths + 1]].join_type != LOUTER:
|
2013-06-06 05:29:44 +08:00
|
|
|
select_fields = [r[0] for r in join_field.related_fields]
|
2014-04-28 20:27:36 +08:00
|
|
|
select_alias = lookup_tables[trimmed_paths + 1]
|
|
|
|
self.unref_alias(lookup_tables[trimmed_paths])
|
2013-06-06 05:29:44 +08:00
|
|
|
extra_restriction = join_field.get_extra_restriction(
|
2014-04-28 20:27:36 +08:00
|
|
|
self.where_class, None, lookup_tables[trimmed_paths + 1])
|
2013-06-06 05:29:44 +08:00
|
|
|
if extra_restriction:
|
|
|
|
self.where.add(extra_restriction, AND)
|
|
|
|
else:
|
|
|
|
# TODO: It might be possible to trim more joins from the start of the
|
|
|
|
# inner query if it happens to have a longer join chain containing the
|
|
|
|
# values in select_fields. Lets punt this one for now.
|
|
|
|
select_fields = [r[1] for r in join_field.related_fields]
|
2014-04-28 20:27:36 +08:00
|
|
|
select_alias = lookup_tables[trimmed_paths]
|
2014-11-17 16:26:10 +08:00
|
|
|
# The found starting point is likely a Join instead of a BaseTable reference.
|
|
|
|
# But the first entry in the query's FROM clause must not be a JOIN.
|
|
|
|
for table in self.tables:
|
|
|
|
if self.alias_refcount[table] > 0:
|
|
|
|
self.alias_map[table] = BaseTable(self.alias_map[table].table_name, table)
|
|
|
|
break
|
2013-03-25 00:40:40 +08:00
|
|
|
self.select = [SelectInfo((select_alias, f.column), f) for f in select_fields]
|
2013-06-06 05:29:44 +08:00
|
|
|
return trimmed_prefix, contains_louter
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
2012-04-30 00:25:46 +08:00
|
|
|
def is_nullable(self, field):
|
|
|
|
"""
|
|
|
|
A helper to check if the given field should be treated as nullable.
|
|
|
|
|
|
|
|
Some backends treat '' as null and Django treats such fields as
|
|
|
|
nullable for those backends. In such situations field.null can be
|
|
|
|
False even if we should treat the field as nullable.
|
|
|
|
"""
|
|
|
|
# We need to use DEFAULT_DB_ALIAS here, as QuerySet does not have
|
|
|
|
# (nor should it have) knowledge of which connection is going to be
|
|
|
|
# used. The proper fix would be to defer all decisions where
|
|
|
|
# is_nullable() is needed to the compiler stage, but that is not easy
|
|
|
|
# to do currently.
|
|
|
|
if ((connections[DEFAULT_DB_ALIAS].features.interprets_empty_strings_as_nulls)
|
2013-11-26 17:43:46 +08:00
|
|
|
and field.empty_strings_allowed):
|
2012-04-30 00:25:46 +08:00
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return field.null
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
2013-07-08 08:39:54 +08:00
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
def get_order_dir(field, default='ASC'):
|
|
|
|
"""
|
|
|
|
Returns the field name and direction for an order specification. For
|
|
|
|
example, '-foo' is returned as ('foo', 'DESC').
|
|
|
|
|
|
|
|
The 'default' param is used to indicate which way no prefix (or a '+'
|
|
|
|
prefix) should sort. The '-' prefix always sorts the opposite way.
|
|
|
|
"""
|
|
|
|
dirn = ORDER_DIR[default]
|
|
|
|
if field[0] == '-':
|
|
|
|
return field[1:], dirn[1]
|
|
|
|
return field, dirn[0]
|
|
|
|
|
|
|
|
|
2009-03-19 17:06:04 +08:00
|
|
|
def add_to_dict(data, key, value):
|
|
|
|
"""
|
|
|
|
A helper function to add "value" to the set of values for "key", whether or
|
|
|
|
not "key" already exists.
|
|
|
|
"""
|
|
|
|
if key in data:
|
|
|
|
data[key].add(value)
|
|
|
|
else:
|
2014-09-26 20:31:50 +08:00
|
|
|
data[key] = {value}
|
2012-11-29 00:16:00 +08:00
|
|
|
|
2013-07-08 08:39:54 +08:00
|
|
|
|
2012-11-29 00:16:00 +08:00
|
|
|
def is_reverse_o2o(field):
|
|
|
|
"""
|
|
|
|
A little helper to check if the given field is reverse-o2o. The field is
|
|
|
|
expected to be some sort of relation field or related object.
|
|
|
|
"""
|
|
|
|
return not hasattr(field, 'rel') and field.field.unique
|
2012-08-25 19:13:37 +08:00
|
|
|
|
2013-07-08 08:39:54 +08:00
|
|
|
|
2012-08-25 19:13:37 +08:00
|
|
|
def alias_diff(refcounts_before, refcounts_after):
|
|
|
|
"""
|
|
|
|
Given the before and after copies of refcounts works out which aliases
|
|
|
|
have been added to the after copy.
|
|
|
|
"""
|
2013-06-10 23:22:30 +08:00
|
|
|
# Use -1 as default value so that any join that is created, then trimmed
|
|
|
|
# is seen as added.
|
2012-08-25 19:13:37 +08:00
|
|
|
return set(t for t in refcounts_after
|
2013-06-10 23:22:30 +08:00
|
|
|
if refcounts_after[t] > refcounts_before.get(t, -1))
|
2013-11-05 00:04:57 +08:00
|
|
|
|
|
|
|
|
|
|
|
class JoinPromoter(object):
|
|
|
|
"""
|
|
|
|
A class to abstract away join promotion problems for complex filter
|
|
|
|
conditions.
|
|
|
|
"""
|
|
|
|
|
2014-01-09 01:35:47 +08:00
|
|
|
def __init__(self, connector, num_children, negated):
|
2013-11-05 00:04:57 +08:00
|
|
|
self.connector = connector
|
2014-01-09 01:35:47 +08:00
|
|
|
self.negated = negated
|
|
|
|
if self.negated:
|
|
|
|
if connector == AND:
|
|
|
|
self.effective_connector = OR
|
|
|
|
else:
|
|
|
|
self.effective_connector = AND
|
|
|
|
else:
|
|
|
|
self.effective_connector = self.connector
|
2013-11-05 00:04:57 +08:00
|
|
|
self.num_children = num_children
|
|
|
|
# Maps of table alias to how many times it is seen as required for
|
|
|
|
# inner and/or outer joins.
|
|
|
|
self.outer_votes = {}
|
|
|
|
self.inner_votes = {}
|
|
|
|
|
|
|
|
def add_votes(self, inner_votes):
|
|
|
|
"""
|
|
|
|
Add single vote per item to self.inner_votes. Parameter can be any
|
|
|
|
iterable.
|
|
|
|
"""
|
|
|
|
for voted in inner_votes:
|
|
|
|
self.inner_votes[voted] = self.inner_votes.get(voted, 0) + 1
|
|
|
|
|
|
|
|
def update_join_types(self, query):
|
|
|
|
"""
|
|
|
|
Change join types so that the generated query is as efficient as
|
|
|
|
possible, but still correct. So, change as many joins as possible
|
|
|
|
to INNER, but don't make OUTER joins INNER if that could remove
|
|
|
|
results from the query.
|
|
|
|
"""
|
|
|
|
to_promote = set()
|
|
|
|
to_demote = set()
|
2014-01-09 01:35:47 +08:00
|
|
|
# The effective_connector is used so that NOT (a AND b) is treated
|
|
|
|
# similarly to (a OR b) for join promotion.
|
2013-11-05 00:04:57 +08:00
|
|
|
for table, votes in self.inner_votes.items():
|
|
|
|
# We must use outer joins in OR case when the join isn't contained
|
|
|
|
# in all of the joins. Otherwise the INNER JOIN itself could remove
|
|
|
|
# valid results. Consider the case where a model with rel_a and
|
|
|
|
# rel_b relations is queried with rel_a__col=1 | rel_b__col=2. Now,
|
|
|
|
# if rel_a join doesn't produce any results is null (for example
|
|
|
|
# reverse foreign key or null value in direct foreign key), and
|
|
|
|
# there is a matching row in rel_b with col=2, then an INNER join
|
|
|
|
# to rel_a would remove a valid match from the query. So, we need
|
|
|
|
# to promote any existing INNER to LOUTER (it is possible this
|
|
|
|
# promotion in turn will be demoted later on).
|
2014-01-09 01:35:47 +08:00
|
|
|
if self.effective_connector == 'OR' and votes < self.num_children:
|
2013-11-05 00:04:57 +08:00
|
|
|
to_promote.add(table)
|
|
|
|
# If connector is AND and there is a filter that can match only
|
|
|
|
# when there is a joinable row, then use INNER. For example, in
|
|
|
|
# rel_a__col=1 & rel_b__col=2, if either of the rels produce NULL
|
|
|
|
# as join output, then the col=1 or col=2 can't match (as
|
|
|
|
# NULL=anything is always false).
|
|
|
|
# For the OR case, if all children voted for a join to be inner,
|
|
|
|
# then we can use INNER for the join. For example:
|
|
|
|
# (rel_a__col__icontains=Alex | rel_a__col__icontains=Russell)
|
|
|
|
# then if rel_a doesn't produce any rows, the whole condition
|
|
|
|
# can't match. Hence we can safely use INNER join.
|
2014-01-09 01:35:47 +08:00
|
|
|
if self.effective_connector == 'AND' or (
|
|
|
|
self.effective_connector == 'OR' and votes == self.num_children):
|
2013-11-05 00:04:57 +08:00
|
|
|
to_demote.add(table)
|
|
|
|
# Finally, what happens in cases where we have:
|
|
|
|
# (rel_a__col=1|rel_b__col=2) & rel_a__col__gte=0
|
|
|
|
# Now, we first generate the OR clause, and promote joins for it
|
|
|
|
# in the first if branch above. Both rel_a and rel_b are promoted
|
|
|
|
# to LOUTER joins. After that we do the AND case. The OR case
|
|
|
|
# voted no inner joins but the rel_a__col__gte=0 votes inner join
|
|
|
|
# for rel_a. We demote it back to INNER join (in AND case a single
|
|
|
|
# vote is enough). The demotion is OK, if rel_a doesn't produce
|
|
|
|
# rows, then the rel_a__col__gte=0 clause can't be true, and thus
|
|
|
|
# the whole clause must be false. So, it is safe to use INNER
|
|
|
|
# join.
|
|
|
|
# Note that in this example we could just as well have the __gte
|
|
|
|
# clause and the OR clause swapped. Or we could replace the __gte
|
2014-05-29 08:39:14 +08:00
|
|
|
# clause with an OR clause containing rel_a__col=1|rel_a__col=2,
|
2013-11-05 00:04:57 +08:00
|
|
|
# and again we could safely demote to INNER.
|
|
|
|
query.promote_joins(to_promote)
|
|
|
|
query.demote_joins(to_demote)
|
|
|
|
return to_demote
|