U a<@sdZddlmZddlZddlZddlZddlmZddlm Z ddlm Z ddl m Z dd l m Z dd l mZdd l mZdd l mZdd lmZddlmZddlmZddlmZddlmZddlmZddlmZddlmZddlmZddlmZddlmZddlmZddlmZddlm Z ddl!m"Z"ddl!m#Z#ddl!m$Z$ddl!m%Z%dd l!m&Z&dd!l!m'Z'dd"l!m(Z(d#d$Z)d%d&Z*ej+Gd'd(d(eZ,d)d*Z-Gd+d,d,e.Z/Gd-d.d.e.Z0dS)/a Heuristics related to join conditions as used in :func:`_orm.relationship`. Provides the :class:`.JoinCondition` object, which encapsulates SQL annotation and aliasing behavior focused on the `primaryjoin` and `secondaryjoin` aspects of :func:`_orm.relationship`. )absolute_importN) attributes)_is_mapped_class) state_str) MANYTOMANY) MANYTOONE) ONETOMANY)PropComparator)StrategizedProperty) _orm_annotate)_orm_deannotate)CascadeOptions)exc)log)schema)sql)util)inspect) coercions) expression) operators)roles)visitors)_deep_deannotate)_shallow_annotate)adapt_criterion_to_null) ClauseAdapter)join_condition)selectables_overlapvisit_binary_productcCstttj|ddiS)aAnnotate a portion of a primaryjoin expression with a 'remote' annotation. See the section :ref:`relationship_custom_foreign` for a description of use. .. seealso:: :ref:`relationship_custom_foreign` :func:`.foreign` remoteT_annotate_columnsrexpectrColumnArgumentRoleexprr*]C:\Users\vtejo\AppData\Local\Temp\pip-unpacked-wheel-nyjtotrf\sqlalchemy\orm\relationships.pyr#5s r#cCstttj|ddiS)aAnnotate a portion of a primaryjoin expression with a 'foreign' annotation. See the section :ref:`relationship_custom_foreign` for a description of use. .. seealso:: :ref:`relationship_custom_foreign` :func:`.remote` foreignTr$r(r*r*r+r,Hs r,c"s,eZdZdZdZdZeddddddZdZddddddddddddddeded ded dddddded ed ddddddddf"fd d Z ddZ ddZ Gddde Z dXddZdYddZddZdZddZddZdd Zejfd!d"Zd[d#d$Zed%d&Zed'd(Zd)d*Zejed+d,d-Z ejd.d/Z!fd0d1Z"d2d3Z#d4d5Z$d6d7Z%ed8d9Z&ed:d;Z'ejed<d=d>Z(ed+d?d@Z)edAdBZ*e*j+dCdBZ*dDdEZ,dFdGZ-dHdIZ.dJdKZ/dLdMZ0edNdOdPZ1ejdQdRZ2ejdSdTZ3d\dVdWZ4Z5S)]RelationshipPropertyzDescribes an object property that holds a single item or list of items that correspond to a related database table. Public constructor is the :func:`_orm.relationship` function. .. seealso:: :ref:`relationship_config_toplevel` relationshipTFpassive_deletespassive_updatesenable_typechecksactive_historycascade_backrefsNselectr0r1r2r3r4c$$stt|||_||_||_||_||_| |_d|_ | |_ | rV|j |||||d| rh|"rht d|"|_||_||_||_||_||_||_||_||_||_||_||_||_||_||_|#|_||_|!rt d|!|_!||_"||_#||_$|ptj%|_&|&|d|_'t(|| dk r(| |_)d|jff|_*t+|_,| rXt+t-.d| |_/nd|_/| dk rp| |_0n|j rd |_0nd |_0||_1| |_2|j2r|rt d d|_3n||_3dS) aProvide a relationship between two mapped classes. This corresponds to a parent-child or associative table relationship. The constructed class is an instance of :class:`.RelationshipProperty`. A typical :func:`_orm.relationship`, used in a classical mapping:: mapper(Parent, properties={ 'children': relationship(Child) }) Some arguments accepted by :func:`_orm.relationship` optionally accept a callable function, which when called produces the desired value. The callable is invoked by the parent :class:`_orm.Mapper` at "mapper initialization" time, which happens only when mappers are first used, and is assumed to be after all mappings have been constructed. This can be used to resolve order-of-declaration and other dependency issues, such as if ``Child`` is declared below ``Parent`` in the same file:: mapper(Parent, properties={ "children":relationship(lambda: Child, order_by=lambda: Child.id) }) When using the :ref:`declarative_toplevel` extension, the Declarative initializer allows string arguments to be passed to :func:`_orm.relationship`. These string arguments are converted into callables that evaluate the string as Python code, using the Declarative class-registry as a namespace. This allows the lookup of related classes to be automatic via their string name, and removes the need for related classes to be imported into the local module space before the dependent classes have been declared. It is still required that the modules in which these related classes appear are imported anywhere in the application at some point before the related mappings are actually used, else a lookup error will be raised when the :func:`_orm.relationship` attempts to resolve the string reference to the related class. An example of a string- resolved class is as follows:: from sqlalchemy.ext.declarative import declarative_base Base = declarative_base() class Parent(Base): __tablename__ = 'parent' id = Column(Integer, primary_key=True) children = relationship("Child", order_by="Child.id") .. seealso:: :ref:`relationship_config_toplevel` - Full introductory and reference documentation for :func:`_orm.relationship`. :ref:`orm_tutorial_relationship` - ORM tutorial introduction. :param argument: A mapped class, or actual :class:`_orm.Mapper` instance, representing the target of the relationship. :paramref:`_orm.relationship.argument` may also be passed as a callable function which is evaluated at mapper initialization time, and may be passed as a string name when using Declarative. .. warning:: Prior to SQLAlchemy 1.3.16, this value is interpreted using Python's ``eval()`` function. **DO NOT PASS UNTRUSTED INPUT TO THIS STRING**. See :ref:`declarative_relationship_eval` for details on declarative evaluation of :func:`_orm.relationship` arguments. .. versionchanged 1.3.16:: The string evaluation of the main "argument" no longer accepts an open ended Python expression, instead only accepting a string class name or dotted package-qualified name. .. seealso:: :ref:`declarative_configuring_relationships` - further detail on relationship configuration when using Declarative. :param secondary: For a many-to-many relationship, specifies the intermediary table, and is typically an instance of :class:`_schema.Table`. In less common circumstances, the argument may also be specified as an :class:`_expression.Alias` construct, or even a :class:`_expression.Join` construct. :paramref:`_orm.relationship.secondary` may also be passed as a callable function which is evaluated at mapper initialization time. When using Declarative, it may also be a string argument noting the name of a :class:`_schema.Table` that is present in the :class:`_schema.MetaData` collection associated with the parent-mapped :class:`_schema.Table`. .. warning:: When passed as a Python-evaluable string, the argument is interpreted using Python's ``eval()`` function. **DO NOT PASS UNTRUSTED INPUT TO THIS STRING**. See :ref:`declarative_relationship_eval` for details on declarative evaluation of :func:`_orm.relationship` arguments. The :paramref:`_orm.relationship.secondary` keyword argument is typically applied in the case where the intermediary :class:`_schema.Table` is not otherwise expressed in any direct class mapping. If the "secondary" table is also explicitly mapped elsewhere (e.g. as in :ref:`association_pattern`), one should consider applying the :paramref:`_orm.relationship.viewonly` flag so that this :func:`_orm.relationship` is not used for persistence operations which may conflict with those of the association object pattern. .. seealso:: :ref:`relationships_many_to_many` - Reference example of "many to many". :ref:`orm_tutorial_many_to_many` - ORM tutorial introduction to many-to-many relationships. :ref:`self_referential_many_to_many` - Specifics on using many-to-many in a self-referential case. :ref:`declarative_many_to_many` - Additional options when using Declarative. :ref:`association_pattern` - an alternative to :paramref:`_orm.relationship.secondary` when composing association table relationships, allowing additional attributes to be specified on the association table. :ref:`composite_secondary_join` - a lesser-used pattern which in some cases can enable complex :func:`_orm.relationship` SQL conditions to be used. .. versionadded:: 0.9.2 :paramref:`_orm.relationship.secondary` works more effectively when referring to a :class:`_expression.Join` instance. :param active_history=False: When ``True``, indicates that the "previous" value for a many-to-one reference should be loaded when replaced, if not already loaded. Normally, history tracking logic for simple many-to-ones only needs to be aware of the "new" value in order to perform a flush. This flag is available for applications that make use of :func:`.attributes.get_history` which also need to know the "previous" value of the attribute. :param backref: Indicates the string name of a property to be placed on the related mapper's class that will handle this relationship in the other direction. The other property will be created automatically when the mappers are configured. Can also be passed as a :func:`.backref` object to control the configuration of the new relationship. .. seealso:: :ref:`relationships_backref` - Introductory documentation and examples. :paramref:`_orm.relationship.back_populates` - alternative form of backref specification. :func:`.backref` - allows control over :func:`_orm.relationship` configuration when using :paramref:`_orm.relationship.backref`. :param back_populates: Takes a string name and has the same meaning as :paramref:`_orm.relationship.backref`, except the complementing property is **not** created automatically, and instead must be configured explicitly on the other mapper. The complementing property should also indicate :paramref:`_orm.relationship.back_populates` to this relationship to ensure proper functioning. .. seealso:: :ref:`relationships_backref` - Introductory documentation and examples. :paramref:`_orm.relationship.backref` - alternative form of backref specification. :param overlaps: A string name or comma-delimited set of names of other relationships on either this mapper, a descendant mapper, or a target mapper with which this relationship may write to the same foreign keys upon persistence. The only effect this has is to eliminate the warning that this relationship will conflict with another upon persistence. This is used for such relationships that are truly capable of conflicting with each other on write, but the application will ensure that no such conflicts occur. .. versionadded:: 1.4 .. seealso:: :ref:`error_qzyx` - usage example :param bake_queries=True: Enable :ref:`lambda caching ` for loader strategies, if applicable, which adds a performance gain to the construction of SQL constructs used by loader strategies, in addition to the usual SQL statement caching used throughout SQLAlchemy. This parameter currently applies only to the "lazy" and "selectin" loader strategies. There is generally no reason to set this parameter to False. .. versionchanged:: 1.4 Relationship loaders no longer use the previous "baked query" system of query caching. The "lazy" and "selectin" loaders make use of the "lambda cache" system for the construction of SQL constructs, as well as the usual SQL caching system that is throughout SQLAlchemy as of the 1.4 series. :param cascade: A comma-separated list of cascade rules which determines how Session operations should be "cascaded" from parent to child. This defaults to ``False``, which means the default cascade should be used - this default cascade is ``"save-update, merge"``. The available cascades are ``save-update``, ``merge``, ``expunge``, ``delete``, ``delete-orphan``, and ``refresh-expire``. An additional option, ``all`` indicates shorthand for ``"save-update, merge, refresh-expire, expunge, delete"``, and is often used as in ``"all, delete-orphan"`` to indicate that related objects should follow along with the parent object in all cases, and be deleted when de-associated. .. seealso:: :ref:`unitofwork_cascades` - Full detail on each of the available cascade options. :ref:`tutorial_delete_cascade` - Tutorial example describing a delete cascade. :param cascade_backrefs=True: A boolean value indicating if the ``save-update`` cascade should operate along an assignment event intercepted by a backref. When set to ``False``, the attribute managed by this relationship will not cascade an incoming transient object into the session of a persistent parent, if the event is received via backref. .. deprecated:: 1.4 The :paramref:`_orm.relationship.cascade_backrefs` flag will default to False in all cases in SQLAlchemy 2.0. .. seealso:: :ref:`backref_cascade` - Full discussion and examples on how the :paramref:`_orm.relationship.cascade_backrefs` option is used. :param collection_class: A class or callable that returns a new list-holding object. will be used in place of a plain list for storing elements. .. seealso:: :ref:`custom_collections` - Introductory documentation and examples. :param comparator_factory: A class which extends :class:`.RelationshipProperty.Comparator` which provides custom SQL clause generation for comparison operations. .. seealso:: :class:`.PropComparator` - some detail on redefining comparators at this level. :ref:`custom_comparators` - Brief intro to this feature. :param distinct_target_key=None: Indicate if a "subquery" eager load should apply the DISTINCT keyword to the innermost SELECT statement. When left as ``None``, the DISTINCT keyword will be applied in those cases when the target columns do not comprise the full primary key of the target table. When set to ``True``, the DISTINCT keyword is applied to the innermost SELECT unconditionally. It may be desirable to set this flag to False when the DISTINCT is reducing performance of the innermost subquery beyond that of what duplicate innermost rows may be causing. .. versionchanged:: 0.9.0 - :paramref:`_orm.relationship.distinct_target_key` now defaults to ``None``, so that the feature enables itself automatically for those cases where the innermost query targets a non-unique key. .. seealso:: :ref:`loading_toplevel` - includes an introduction to subquery eager loading. :param doc: Docstring which will be applied to the resulting descriptor. :param foreign_keys: A list of columns which are to be used as "foreign key" columns, or columns which refer to the value in a remote column, within the context of this :func:`_orm.relationship` object's :paramref:`_orm.relationship.primaryjoin` condition. That is, if the :paramref:`_orm.relationship.primaryjoin` condition of this :func:`_orm.relationship` is ``a.id == b.a_id``, and the values in ``b.a_id`` are required to be present in ``a.id``, then the "foreign key" column of this :func:`_orm.relationship` is ``b.a_id``. In normal cases, the :paramref:`_orm.relationship.foreign_keys` parameter is **not required.** :func:`_orm.relationship` will automatically determine which columns in the :paramref:`_orm.relationship.primaryjoin` condition are to be considered "foreign key" columns based on those :class:`_schema.Column` objects that specify :class:`_schema.ForeignKey`, or are otherwise listed as referencing columns in a :class:`_schema.ForeignKeyConstraint` construct. :paramref:`_orm.relationship.foreign_keys` is only needed when: 1. There is more than one way to construct a join from the local table to the remote table, as there are multiple foreign key references present. Setting ``foreign_keys`` will limit the :func:`_orm.relationship` to consider just those columns specified here as "foreign". 2. The :class:`_schema.Table` being mapped does not actually have :class:`_schema.ForeignKey` or :class:`_schema.ForeignKeyConstraint` constructs present, often because the table was reflected from a database that does not support foreign key reflection (MySQL MyISAM). 3. The :paramref:`_orm.relationship.primaryjoin` argument is used to construct a non-standard join condition, which makes use of columns or expressions that do not normally refer to their "parent" column, such as a join condition expressed by a complex comparison using a SQL function. The :func:`_orm.relationship` construct will raise informative error messages that suggest the use of the :paramref:`_orm.relationship.foreign_keys` parameter when presented with an ambiguous condition. In typical cases, if :func:`_orm.relationship` doesn't raise any exceptions, the :paramref:`_orm.relationship.foreign_keys` parameter is usually not needed. :paramref:`_orm.relationship.foreign_keys` may also be passed as a callable function which is evaluated at mapper initialization time, and may be passed as a Python-evaluable string when using Declarative. .. warning:: When passed as a Python-evaluable string, the argument is interpreted using Python's ``eval()`` function. **DO NOT PASS UNTRUSTED INPUT TO THIS STRING**. See :ref:`declarative_relationship_eval` for details on declarative evaluation of :func:`_orm.relationship` arguments. .. seealso:: :ref:`relationship_foreign_keys` :ref:`relationship_custom_foreign` :func:`.foreign` - allows direct annotation of the "foreign" columns within a :paramref:`_orm.relationship.primaryjoin` condition. :param info: Optional data dictionary which will be populated into the :attr:`.MapperProperty.info` attribute of this object. :param innerjoin=False: When ``True``, joined eager loads will use an inner join to join against related tables instead of an outer join. The purpose of this option is generally one of performance, as inner joins generally perform better than outer joins. This flag can be set to ``True`` when the relationship references an object via many-to-one using local foreign keys that are not nullable, or when the reference is one-to-one or a collection that is guaranteed to have one or at least one entry. The option supports the same "nested" and "unnested" options as that of :paramref:`_orm.joinedload.innerjoin`. See that flag for details on nested / unnested behaviors. .. seealso:: :paramref:`_orm.joinedload.innerjoin` - the option as specified by loader option, including detail on nesting behavior. :ref:`what_kind_of_loading` - Discussion of some details of various loader options. :param join_depth: When non-``None``, an integer value indicating how many levels deep "eager" loaders should join on a self-referring or cyclical relationship. The number counts how many times the same Mapper shall be present in the loading condition along a particular join branch. When left at its default of ``None``, eager loaders will stop chaining when they encounter a the same target mapper which is already higher up in the chain. This option applies both to joined- and subquery- eager loaders. .. seealso:: :ref:`self_referential_eager_loading` - Introductory documentation and examples. :param lazy='select': specifies How the related items should be loaded. Default value is ``select``. Values include: * ``select`` - items should be loaded lazily when the property is first accessed, using a separate SELECT statement, or identity map fetch for simple many-to-one references. * ``immediate`` - items should be loaded as the parents are loaded, using a separate SELECT statement, or identity map fetch for simple many-to-one references. * ``joined`` - items should be loaded "eagerly" in the same query as that of the parent, using a JOIN or LEFT OUTER JOIN. Whether the join is "outer" or not is determined by the :paramref:`_orm.relationship.innerjoin` parameter. * ``subquery`` - items should be loaded "eagerly" as the parents are loaded, using one additional SQL statement, which issues a JOIN to a subquery of the original statement, for each collection requested. * ``selectin`` - items should be loaded "eagerly" as the parents are loaded, using one or more additional SQL statements, which issues a JOIN to the immediate parent object, specifying primary key identifiers using an IN clause. .. versionadded:: 1.2 * ``noload`` - no loading should occur at any time. This is to support "write-only" attributes, or attributes which are populated in some manner specific to the application. * ``raise`` - lazy loading is disallowed; accessing the attribute, if its value were not already loaded via eager loading, will raise an :exc:`~sqlalchemy.exc.InvalidRequestError`. This strategy can be used when objects are to be detached from their attached :class:`.Session` after they are loaded. .. versionadded:: 1.1 * ``raise_on_sql`` - lazy loading that emits SQL is disallowed; accessing the attribute, if its value were not already loaded via eager loading, will raise an :exc:`~sqlalchemy.exc.InvalidRequestError`, **if the lazy load needs to emit SQL**. If the lazy load can pull the related value from the identity map or determine that it should be None, the value is loaded. This strategy can be used when objects will remain associated with the attached :class:`.Session`, however additional SELECT statements should be blocked. .. versionadded:: 1.1 * ``dynamic`` - the attribute will return a pre-configured :class:`_query.Query` object for all read operations, onto which further filtering operations can be applied before iterating the results. See the section :ref:`dynamic_relationship` for more details. * True - a synonym for 'select' * False - a synonym for 'joined' * None - a synonym for 'noload' .. seealso:: :doc:`/orm/loading_relationships` - Full documentation on relationship loader configuration. :ref:`dynamic_relationship` - detail on the ``dynamic`` option. :ref:`collections_noload_raiseload` - notes on "noload" and "raise" :param load_on_pending=False: Indicates loading behavior for transient or pending parent objects. When set to ``True``, causes the lazy-loader to issue a query for a parent object that is not persistent, meaning it has never been flushed. This may take effect for a pending object when autoflush is disabled, or for a transient object that has been "attached" to a :class:`.Session` but is not part of its pending collection. The :paramref:`_orm.relationship.load_on_pending` flag does not improve behavior when the ORM is used normally - object references should be constructed at the object level, not at the foreign key level, so that they are present in an ordinary way before a flush proceeds. This flag is not not intended for general use. .. seealso:: :meth:`.Session.enable_relationship_loading` - this method establishes "load on pending" behavior for the whole object, and also allows loading on objects that remain transient or detached. :param order_by: Indicates the ordering that should be applied when loading these items. :paramref:`_orm.relationship.order_by` is expected to refer to one of the :class:`_schema.Column` objects to which the target class is mapped, or the attribute itself bound to the target class which refers to the column. :paramref:`_orm.relationship.order_by` may also be passed as a callable function which is evaluated at mapper initialization time, and may be passed as a Python-evaluable string when using Declarative. .. warning:: When passed as a Python-evaluable string, the argument is interpreted using Python's ``eval()`` function. **DO NOT PASS UNTRUSTED INPUT TO THIS STRING**. See :ref:`declarative_relationship_eval` for details on declarative evaluation of :func:`_orm.relationship` arguments. :param passive_deletes=False: Indicates loading behavior during delete operations. A value of True indicates that unloaded child items should not be loaded during a delete operation on the parent. Normally, when a parent item is deleted, all child items are loaded so that they can either be marked as deleted, or have their foreign key to the parent set to NULL. Marking this flag as True usually implies an ON DELETE rule is in place which will handle updating/deleting child rows on the database side. Additionally, setting the flag to the string value 'all' will disable the "nulling out" of the child foreign keys, when the parent object is deleted and there is no delete or delete-orphan cascade enabled. This is typically used when a triggering or error raise scenario is in place on the database side. Note that the foreign key attributes on in-session child objects will not be changed after a flush occurs so this is a very special use-case setting. Additionally, the "nulling out" will still occur if the child object is de-associated with the parent. .. seealso:: :ref:`passive_deletes` - Introductory documentation and examples. :param passive_updates=True: Indicates the persistence behavior to take when a referenced primary key value changes in place, indicating that the referencing foreign key columns will also need their value changed. When True, it is assumed that ``ON UPDATE CASCADE`` is configured on the foreign key in the database, and that the database will handle propagation of an UPDATE from a source column to dependent rows. When False, the SQLAlchemy :func:`_orm.relationship` construct will attempt to emit its own UPDATE statements to modify related targets. However note that SQLAlchemy **cannot** emit an UPDATE for more than one level of cascade. Also, setting this flag to False is not compatible in the case where the database is in fact enforcing referential integrity, unless those constraints are explicitly "deferred", if the target backend supports it. It is highly advised that an application which is employing mutable primary keys keeps ``passive_updates`` set to True, and instead uses the referential integrity features of the database itself in order to handle the change efficiently and fully. .. seealso:: :ref:`passive_updates` - Introductory documentation and examples. :paramref:`.mapper.passive_updates` - a similar flag which takes effect for joined-table inheritance mappings. :param post_update: This indicates that the relationship should be handled by a second UPDATE statement after an INSERT or before a DELETE. Currently, it also will issue an UPDATE after the instance was UPDATEd as well, although this technically should be improved. This flag is used to handle saving bi-directional dependencies between two individual rows (i.e. each row references the other), where it would otherwise be impossible to INSERT or DELETE both rows fully since one row exists before the other. Use this flag when a particular mapping arrangement will incur two rows that are dependent on each other, such as a table that has a one-to-many relationship to a set of child rows, and also has a column that references a single child row within that list (i.e. both tables contain a foreign key to each other). If a flush operation returns an error that a "cyclical dependency" was detected, this is a cue that you might want to use :paramref:`_orm.relationship.post_update` to "break" the cycle. .. seealso:: :ref:`post_update` - Introductory documentation and examples. :param primaryjoin: A SQL expression that will be used as the primary join of the child object against the parent object, or in a many-to-many relationship the join of the parent object to the association table. By default, this value is computed based on the foreign key relationships of the parent and child tables (or association table). :paramref:`_orm.relationship.primaryjoin` may also be passed as a callable function which is evaluated at mapper initialization time, and may be passed as a Python-evaluable string when using Declarative. .. warning:: When passed as a Python-evaluable string, the argument is interpreted using Python's ``eval()`` function. **DO NOT PASS UNTRUSTED INPUT TO THIS STRING**. See :ref:`declarative_relationship_eval` for details on declarative evaluation of :func:`_orm.relationship` arguments. .. seealso:: :ref:`relationship_primaryjoin` :param remote_side: Used for self-referential relationships, indicates the column or list of columns that form the "remote side" of the relationship. :paramref:`_orm.relationship.remote_side` may also be passed as a callable function which is evaluated at mapper initialization time, and may be passed as a Python-evaluable string when using Declarative. .. warning:: When passed as a Python-evaluable string, the argument is interpreted using Python's ``eval()`` function. **DO NOT PASS UNTRUSTED INPUT TO THIS STRING**. See :ref:`declarative_relationship_eval` for details on declarative evaluation of :func:`_orm.relationship` arguments. .. seealso:: :ref:`self_referential` - in-depth explanation of how :paramref:`_orm.relationship.remote_side` is used to configure self-referential relationships. :func:`.remote` - an annotation function that accomplishes the same purpose as :paramref:`_orm.relationship.remote_side`, typically when a custom :paramref:`_orm.relationship.primaryjoin` condition is used. :param query_class: A :class:`_query.Query` subclass that will be used internally by the ``AppenderQuery`` returned by a "dynamic" relationship, that is, a relationship that specifies ``lazy="dynamic"`` or was otherwise constructed using the :func:`_orm.dynamic_loader` function. .. seealso:: :ref:`dynamic_relationship` - Introduction to "dynamic" relationship loaders. :param secondaryjoin: A SQL expression that will be used as the join of an association table to the child object. By default, this value is computed based on the foreign key relationships of the association and child tables. :paramref:`_orm.relationship.secondaryjoin` may also be passed as a callable function which is evaluated at mapper initialization time, and may be passed as a Python-evaluable string when using Declarative. .. warning:: When passed as a Python-evaluable string, the argument is interpreted using Python's ``eval()`` function. **DO NOT PASS UNTRUSTED INPUT TO THIS STRING**. See :ref:`declarative_relationship_eval` for details on declarative evaluation of :func:`_orm.relationship` arguments. .. seealso:: :ref:`relationship_primaryjoin` :param single_parent: When True, installs a validator which will prevent objects from being associated with more than one parent at a time. This is used for many-to-one or many-to-many relationships that should be treated either as one-to-one or one-to-many. Its usage is optional, except for :func:`_orm.relationship` constructs which are many-to-one or many-to-many and also specify the ``delete-orphan`` cascade option. The :func:`_orm.relationship` construct itself will raise an error instructing when this option is required. .. seealso:: :ref:`unitofwork_cascades` - includes detail on when the :paramref:`_orm.relationship.single_parent` flag may be appropriate. :param uselist: A boolean that indicates if this property should be loaded as a list or a scalar. In most cases, this value is determined automatically by :func:`_orm.relationship` at mapper configuration time, based on the type and direction of the relationship - one to many forms a list, many to one forms a scalar, many to many is a list. If a scalar is desired where normally a list would be present, such as a bi-directional one-to-one relationship, set :paramref:`_orm.relationship.uselist` to False. The :paramref:`_orm.relationship.uselist` flag is also available on an existing :func:`_orm.relationship` construct as a read-only attribute, which can be used to determine if this :func:`_orm.relationship` deals with collections or scalar attributes:: >>> User.addresses.property.uselist True .. seealso:: :ref:`relationships_one_to_one` - Introduction to the "one to one" relationship pattern, which is typically when the :paramref:`_orm.relationship.uselist` flag is needed. :param viewonly=False: When set to ``True``, the relationship is used only for loading objects, and not for any persistence operation. A :func:`_orm.relationship` which specifies :paramref:`_orm.relationship.viewonly` can work with a wider range of SQL operations within the :paramref:`_orm.relationship.primaryjoin` condition, including operations that feature the use of a variety of comparison operators as well as SQL functions such as :func:`_expression.cast`. The :paramref:`_orm.relationship.viewonly` flag is also of general use when defining any kind of :func:`_orm.relationship` that doesn't represent the full set of related objects, to prevent modifications of the collection from resulting in persistence operations. When using the :paramref:`_orm.relationship.viewonly` flag in conjunction with backrefs, the originating relationship for a particular state change will not produce state changes within the viewonly relationship. This is the behavior implied by :paramref:`_orm.relationship.sync_backref` being set to False. .. versionchanged:: 1.3.17 - the :paramref:`_orm.relationship.sync_backref` flag is set to False when using viewonly in conjunction with backrefs. .. seealso:: :paramref:`_orm.relationship.sync_backref` :param sync_backref: A boolean that enables the events used to synchronize the in-Python attributes when this relationship is target of either :paramref:`_orm.relationship.backref` or :paramref:`_orm.relationship.back_populates`. Defaults to ``None``, which indicates that an automatic value should be selected based on the value of the :paramref:`_orm.relationship.viewonly` flag. When left at its default, changes in state will be back-populated only if neither sides of a relationship is viewonly. .. versionadded:: 1.3.17 .. versionchanged:: 1.4 - A relationship that specifies :paramref:`_orm.relationship.viewonly` automatically implies that :paramref:`_orm.relationship.sync_backref` is ``False``. .. seealso:: :paramref:`_orm.relationship.viewonly` :param omit_join: Allows manual control over the "selectin" automatic join optimization. Set to ``False`` to disable the "omit join" feature added in SQLAlchemy 1.3; or leave as ``None`` to leave automatic optimization in place. .. note:: This flag may only be set to ``False``. It is not necessary to set it to ``True`` as the "omit_join" optimization is automatically detected; if it is not detected, then the optimization is not supported. .. versionchanged:: 1.3.11 setting ``omit_join`` to True will now emit a warning as this was not the intended use of this flag. .. versionadded:: 1.3 Nr/z-sync_backref and viewonly cannot both be Truezsetting omit_join to True is not supported; selectin loading of this relationship may not work correctly if this flag is set explicitly. omit_join optimization is automatically detected for conditions under which it is supported.lazyz\s*,\s*r*Fnonezsave-update, mergezCbackref and back_populates keyword arguments are mutually exclusive)4superr-__init__uselistargument secondary primaryjoin secondaryjoin post_update directionviewonly _warn_for_persistence_only_flagssa_exc ArgumentError sync_backrefr6 single_parent_user_defined_foreign_keyscollection_classr0r4r1 remote_sider2 query_class innerjoindistinct_target_keydocr3_legacy_inactive_history_style join_depthrwarn omit_joinlocal_remote_pairs bake_queriesload_on_pending Comparatorcomparator_factory comparatorZset_creation_orderinfoZ strategy_keyset_reverse_propertyresplit _overlapscascadeorder_byback_populatesbackref)$selfr;r<r=r> foreign_keysr:r_rar`overlapsr?r^rAr6rHr0r1rIr2rOrVrFrKrLrMr3r4rTrS_local_remote_pairsrJrXrQrErN __class__r*r+r9vse   zRelationshipProperty.__init__cKs4|D]&\}}||j|krtd|fqdS)NzSetting %s on relationship() while also setting viewonly=True does not make sense, as a viewonly=True relationship does not perform persistence operations. This configuration may raise an error in a future release.)items_persistence_onlyrrP)rbkwkvr*r*r+rB0sz5RelationshipProperty._warn_for_persistence_only_flagscCs&tj|j|j|||||jddS)N)rW parententityrM)rZregister_descriptorclass_keyrVrMrbmapperr*r*r+instrument_classBs z%RelationshipProperty.instrument_classc@seZdZdZdZdZd(ddZddZej dd Z ej d d Z ej d d Z ddZ ddZddZddZddZdZddZd)ddZd*ddZd+ddZd d!Zd"d#Zd$d%Zej d&d'ZdS),zRelationshipProperty.ComparatoraProduce boolean, comparison, and other operators for :class:`.RelationshipProperty` attributes. See the documentation for :class:`.PropComparator` for a brief overview of ORM level operator definition. .. seealso:: :class:`.PropComparator` :class:`.ColumnProperty.Comparator` :class:`.ColumnOperators` :ref:`types_operators` :attr:`.TypeEngine.comparator_factory` Nr*cCs&||_||_||_|r||_||_dS)zConstruction of :class:`.RelationshipProperty.Comparator` is internal to the ORM's attribute mechanics. N)prop _parententity_adapt_to_entity_of_type_extra_criteria)rbrs parentmapperadapt_to_entityof_typeextra_criteriar*r*r+r9cs z(RelationshipProperty.Comparator.__init__cCs|j|j|j||jdS)N)ryrz)rgpropertyrtrv)rbryr*r*r+ryvs z/RelationshipProperty.Comparator.adapt_to_entitycCs|jjS)a+The target entity referred to by this :class:`.RelationshipProperty.Comparator`. This is either a :class:`_orm.Mapper` or :class:`.AliasedInsp` object. This is the "target" or "remote" side of the :func:`_orm.relationship`. )r|entityrbr*r*r+r}~s z&RelationshipProperty.Comparator.entitycCs|jjS)zThe target :class:`_orm.Mapper` referred to by this :class:`.RelationshipProperty.Comparator`. This is the "target" or "remote" side of the :func:`_orm.relationship`. )r|rqr~r*r*r+rqs z&RelationshipProperty.Comparator.mappercCs|jjSN)r|parentr~r*r*r+rtsz-RelationshipProperty.Comparator._parententitycCs|jr|jjS|jjjSdSr)ru selectabler|r_with_polymorphic_selectabler~r*r*r+_source_selectablesz2RelationshipProperty.Comparator._source_selectablec CsZ|}|jrt|j}nd}|jj|d|d|jd\}}}}}}|dk rR||@S|SdS)NT)source_selectablesource_polymorphicof_type_entityalias_secondaryr{)rrvrr| _create_joinsrw) rbZ adapt_fromrpjsjsourcedestr<target_adapterr*r*r+__clause_element__s*  z2RelationshipProperty.Comparator.__clause_element__cCstj|j|j|j||jdS)zRedefine this object in terms of a polymorphic subclass. See :meth:`.PropComparator.of_type` for an example. ryrzr{)r-rUr|rtrurw)rbclsr*r*r+rzsz'RelationshipProperty.Comparator.of_typecGs"tj|j|j|j|j|j|dS)zAdd AND criteria. See :meth:`.PropComparator.and_` for an example. .. versionadded:: 1.4 r)r-rUr|rtrurvrwrbotherr*r*r+and_sz$RelationshipProperty.Comparator.and_cCs tddS)zProduce an IN clause - this is not implemented for :func:`_orm.relationship`-based attributes at this time. zvin_() not yet supported for relationships. For a simple many-to-one, use in_() against the set of foreign key values.N)NotImplementedErrorrr*r*r+in_sz#RelationshipProperty.Comparator.in_cCsrt|tjtjfrD|jjttfkr,| St |jj d|j dSn*|jj rXtdnt |jj ||j dSdS)aImplement the ``==`` operator. In a many-to-one context, such as:: MyClass.some_prop == this will typically produce a clause such as:: mytable.related_id == Where ```` is the primary key of the given object. The ``==`` operator provides partial functionality for non- many-to-one comparisons: * Comparisons against collections are not supported. Use :meth:`~.RelationshipProperty.Comparator.contains`. * Compared to a scalar one-to-many, will produce a clause that compares the target columns in the parent to the given target. * Compared to a scalar many-to-many, an alias of the association table will be rendered as well, forming a natural join that is part of the main body of the query. This will not work for queries that go beyond simple AND conjunctions of comparisons, such as those which use OR. Use explicit joins, outerjoins, or :meth:`~.RelationshipProperty.Comparator.has` for more comprehensive non-many-to-one scalar membership tests. * Comparisons against ``None`` given in a one-to-many or many-to-many context produce a NOT EXISTS clause. N adapt_source]Can't compare a collection to an object or collection; use contains() to test for membership.) isinstancerNoneTyperNullr|r@r r_criterion_existsr _optimized_compareadapterr:rCInvalidRequestErrorrr*r*r+__eq__s&% z&RelationshipProperty.Comparator.__eq__cKst|ddrft|j}|j|j|j}}}|jjr@|s@|}|j }|dk rn|dk r`||@}qn|}nd}d}|j r~| }nd}|jj ||d\} } } } } }|D]2}t|jjj |||k}|dkr|}q||@}q| dk rt| | @}nt| |jjd}|dk r|r|s||}|dk r4|ddi}|tj|@}| dk rptd|| | | | }ntd|| | }|S)NrvF)dest_selectabler)excludeno_replacement_traverseTr)getattrrrvrqris_aliased_classr|_is_self_referential_anonymous_fromclause_single_table_criterionrrrrnr rItraverse _annotaterZTrue_Z_ifnoneexistswhere select_fromZcorrelate_except)rb criterionkwargsrXZ target_mapperZ to_selectabler single_critrrrrrr<rrkcritjexr*r*r+r"s             z1RelationshipProperty.Comparator._criterion_existscKs |jjstd|j|f|S)asProduce an expression that tests a collection against particular criterion, using EXISTS. An expression like:: session.query(MyClass).filter( MyClass.somereference.any(SomeRelated.x==2) ) Will produce a query like:: SELECT * FROM my_table WHERE EXISTS (SELECT 1 FROM related WHERE related.my_id=my_table.id AND related.x=2) Because :meth:`~.RelationshipProperty.Comparator.any` uses a correlated subquery, its performance is not nearly as good when compared against large target tables as that of using a join. :meth:`~.RelationshipProperty.Comparator.any` is particularly useful for testing for empty collections:: session.query(MyClass).filter( ~MyClass.somereference.any() ) will produce:: SELECT * FROM my_table WHERE NOT (EXISTS (SELECT 1 FROM related WHERE related.my_id=my_table.id)) :meth:`~.RelationshipProperty.Comparator.any` is only valid for collections, i.e. a :func:`_orm.relationship` that has ``uselist=True``. For scalar references, use :meth:`~.RelationshipProperty.Comparator.has`. z9'any()' not implemented for scalar attributes. Use has().r|r:rCrrrbrrr*r*r+any{s )z#RelationshipProperty.Comparator.anycKs |jjrtd|j|f|S)aProduce an expression that tests a scalar reference against particular criterion, using EXISTS. An expression like:: session.query(MyClass).filter( MyClass.somereference.has(SomeRelated.x==2) ) Will produce a query like:: SELECT * FROM my_table WHERE EXISTS (SELECT 1 FROM related WHERE related.id==my_table.related_id AND related.x=2) Because :meth:`~.RelationshipProperty.Comparator.has` uses a correlated subquery, its performance is not nearly as good when compared against large target tables as that of using a join. :meth:`~.RelationshipProperty.Comparator.has` is only valid for scalar references, i.e. a :func:`_orm.relationship` that has ``uselist=False``. For collection references, use :meth:`~.RelationshipProperty.Comparator.any`. z4'has()' not implemented for collections. Use any().rrr*r*r+hass z#RelationshipProperty.Comparator.hascKs@|jjstd|jj||jd}|jjdk r<|||_|S)au Return a simple expression that tests a collection for containment of a particular item. :meth:`~.RelationshipProperty.Comparator.contains` is only valid for a collection, i.e. a :func:`_orm.relationship` that implements one-to-many or many-to-many with ``uselist=True``. When used in a simple one-to-many context, an expression like:: MyClass.contains(other) Produces a clause like:: mytable.id == Where ```` is the value of the foreign key attribute on ``other`` which refers to the primary key of its parent object. From this it follows that :meth:`~.RelationshipProperty.Comparator.contains` is very useful when used with simple one-to-many operations. For many-to-many operations, the behavior of :meth:`~.RelationshipProperty.Comparator.contains` has more caveats. The association table will be rendered in the statement, producing an "implicit" join, that is, includes multiple tables in the FROM clause which are equated in the WHERE clause:: query(MyClass).filter(MyClass.contains(other)) Produces a query like:: SELECT * FROM my_table, my_association_table AS my_association_table_1 WHERE my_table.id = my_association_table_1.parent_id AND my_association_table_1.child_id = Where ```` would be the primary key of ``other``. From the above, it is clear that :meth:`~.RelationshipProperty.Comparator.contains` will **not** work with many-to-many collections when used in queries that move beyond simple AND conjunctions, such as multiple :meth:`~.RelationshipProperty.Comparator.contains` expressions joined by OR. In such cases subqueries or explicit "outer joins" will need to be used instead. See :meth:`~.RelationshipProperty.Comparator.any` for a less-performant alternative using EXISTS, or refer to :meth:`_query.Query.outerjoin` as well as :ref:`ormtutorial_joins` for more details on constructing outer joins. z9'contains' not implemented for scalar attributes. Use ==rN) r|r:rCrrrr>'_Comparator__negated_contains_or_equalsZnegation_clause)rbrrclauser*r*r+containss9 z(RelationshipProperty.Comparator.containscsjjtkrVt|fddfddjjrVtjfddjjDStjddt jj j jj |D} |S)Nc s.|j}tj|j|jdjjj|||dS)NT)type_uniqueZ callable_)dictr bindparamrotyper|_get_attr_w_warn_on_nonerq)Z local_colstateZ remote_coldict_r~r*r+state_bindparamszURelationshipProperty.Comparator.__negated_contains_or_equals..state_bindparamcsjr|S|SdSr)rcolr~r*r+adapt&s zKRelationshipProperty.Comparator.__negated_contains_or_equals..adaptc s8g|]0\}}t|||k|dkqSr)ror_.0xy)rrrr*r+ .s zPRelationshipProperty.Comparator.__negated_contains_or_equals..cSsg|]\}}||kqSr*r*rr*r*r+r9s)r|r@rrinstance_state_use_getrrrRziprqZ primary_keyZprimary_key_from_instancer)rbrrr*)rrbrrr+Z__negated_contains_or_equalss&      z This will typically produce a clause such as:: mytable.related_id != Where ```` is the primary key of the given object. The ``!=`` operator provides partial functionality for non- many-to-one comparisons: * Comparisons against collections are not supported. Use :meth:`~.RelationshipProperty.Comparator.contains` in conjunction with :func:`_expression.not_`. * Compared to a scalar one-to-many, will produce a clause that compares the target columns in the parent to the given target. * Compared to a scalar many-to-many, an alias of the association table will be rendered as well, forming a natural join that is part of the main body of the query. This will not work for queries that go beyond simple AND conjunctions of comparisons, such as those which use OR. Use explicit joins, outerjoins, or :meth:`~.RelationshipProperty.Comparator.has` in conjunction with :func:`_expression.not_` for more comprehensive non-many-to-one scalar membership tests. * Comparisons against ``None`` given in a one-to-many or many-to-many context produce an EXISTS clause. Nrr)rrrrrr|r@rr rrrr:rCrrrr*r*r+__ne__Ds'  z&RelationshipProperty.Comparator.__ne__cCs|jj|jSr)rsrZ_check_configurer~r*r*r+r|~s z(RelationshipProperty.Comparator.property)NNr*)N)N)N)__name__ __module__ __qualname____doc__rvrwr9ryrmemoized_propertyr}rqrtrrrzrr__hash__rrrrrrrr|r*r*r*r+rUKs:     : Y 1 "I-:rUcCs@|dk s td}|dk r.t|}|jr.|jj}|j|d||dS)NT)value_is_parentrr)AssertionErrorrrZ_adapterZ adapt_clauser)rbinstancerZ from_entityrZinspr*r*r+ _with_parents z!RelationshipProperty._with_parentcsdk rRz tWntjk r.dYnXdksDtddsRtd| }dkrnj||dS|sjjjj}njj jj }|rj nj t fdd}jdk r|rtj|}t|id|i}|r||}|S)NZ is_instanceFzMapped instance expected for relationship comparison to object. Classes, queries and other SQL elements are not accepted in this context; for comparison with a subquery, use %s.has(**criteria).rcs&|jkr"|j|_dSr)Z_identifying_keyrcallable)r bind_to_colrrqrbrr*r+visit_bindparams z@RelationshipProperty._optimized_compare..visit_bindparamr)rrCNoInspectionAvailablerrD_lazy_none_clause_lazy_strategy _lazywhere _bind_to_col_rev_lazywhere_rev_bind_to_colrqrr instance_dictobjr<rrrrcloned_traverse)rbrrrrreverse_directionrrr*rr+rsV   z'RelationshipProperty._optimized_comparecs.jfdd}|S)aKCreate the callable that is used in a many-to-one expression. E.g.:: u1 = s.query(User).get(5) expr = Address.user == u1 Above, the SQL should be "address.user_id = 5". The callable returned by this method produces the value "5" based on the identity of ``u1``. csjj}}|tjk }jjr0tjn tjtjAd}|tj krf|st dt fn*|tj kr|st dt fn|}|dkrtd|S)NpassivezUCan't resolve value for column %s on object %s; no value has been set for this columnz`Can't resolve value for column %s on object %s; the object is detached and the value was expiredzGot None for value of column %s; this is unsupported for a relationship comparison and will not currently produce an IS comparison (but may in a future release))Z_last_known_valuesrorZNO_VALUEZ_get_state_attr_by_column persistent PASSIVE_OFFZPASSIVE_NO_FETCHZINIT_OKZ NEVER_SETrCrrPASSIVE_NO_RESULTrrP)Z last_knownZ to_returnZexisting_is_availableZ current_valuecolumnrrqrsrr*r+_gos@      z:RelationshipProperty._get_attr_w_warn_on_none.._go)Zget_property_by_columnZ_track_last_known_valuero)rbrqrrrrr*rr+rs+  *z-RelationshipProperty._get_attr_w_warn_on_nonecCsD|s|jj|jj}}n|jj|jj}}t||}|r@||}|Sr)rrrrrr)rbrrrrr*r*r+r3s z&RelationshipProperty._lazy_none_clausecCst|jjjd|jS)N.)strrrnrror~r*r*r+__str__EszRelationshipProperty.__str__c Cs|r"|jD]} || f|kr dSq d|jkr0dS|j|kr>dS|jr(||j} | ||} | jrl| jrtndstt|r||j ||g} | D]J} t | }t | }d|||f<|j |||||d}|dk r| |q|s t |||j}| D]}||qn||jj||| ddnx||j} | dk rrt | }t | }d|||f<|j |||||d}nd}|s|||j<n||j|||ddS)NmergeT)load _recursive_resolve_conflict_mapF)Z_adapt)rZ_cascaderor:Zget_implget_collection collectionemptyrgetrrrZ_mergeappendZinit_state_collectionZappend_without_eventrY)rbsessionZ source_stateZ source_dictZ dest_stateZ dest_dictrrrrimplZinstances_iterableZ dest_listcurrentZ current_stateZ current_dictrZcollcr*r*r+rHs~                   zRelationshipProperty.mergecCsl|j|j}|j|||d}|tjks.|dkr2gSt|drXdd|j||||dDSt||fgSdS)zReturn a list of tuples (state, obj) for the given key. returns an empty list if the value is None/empty/PASSIVE_NO_RESULT rNrcSsg|]}t||fqSr*)rr)ror*r*r+rsz;RelationshipProperty._value_as_iterable..)managerrrrrhasattrrr)rbrrrorrrr*r*r+_value_as_iterables  z'RelationshipProperty._value_as_iterablec cs|dks|jrtj}ntj}|dkr<|j|jj||}n|j|||j|d}|dko`d|j k}|D]\} } | |krxqf| dkrqft | } |r|| rqf|r| jsqf| jj } | |j j j std|j|jj| jf|| | | | | fVqfdS)Ndeletez save-updaterzrefresh-expire delete-orphanz@Attribute '%s' on class '%s' doesn't handle objects of type '%s')r0rZPASSIVE_NO_INITIALIZErrrorZget_all_pendingrrrrqZisaZ class_managerrrrnrgadd) rbrrrZvisited_statesZhalt_onrZtuplesZ skip_pendingrrrZinstance_mapperr*r*r+cascade_iterators@     z%RelationshipProperty.cascade_iteratorcCs|jr dS|jdk SdS)NF)rArEr~r*r*r+_effective_sync_backrefsz,RelationshipProperty._effective_sync_backrefcCs>|jr|jrtd||f|jr:|js:|jdk r:d|_dS)NzQRelationship %s cannot specify sync_backref=True since %s includes viewonly=True.F)rArErCr)Zrel_aZrel_br*r*r+_check_sync_backrefs z(RelationshipProperty._check_sync_backrefcCs|jj|dd}t|ts,td||f|||||||j||j||j |j st d||||j f|j t tfkr|j |j krt d|||j fdS)NF)Z_configure_mapperszback_populates on relationship '%s' refers to attribute '%s' that is not a relationship. The back_populates parameter should refer to the name of a relationship on the target class.zereverse_property %r on relationship %s references relationship %s, which does not reference mapper %szv%s and back-reference %s are both of the same direction %r. Did you mean to set remote_side on the many-to-one side ?)rqZ get_propertyrr-rCrr rZr  common_parentrrDr@r r)rbrorr*r*r+_add_reverse_propertys4         z*RelationshipProperty._add_reverse_propertyzsqlalchemy.orm.mappercCstjj}t|jtjr&||j}n,t|jrLt|jt|j fsL|}n|j}t|trj|j |ddSz t |}Wnt j k rYnXt|dr|St d|jt|fdS)zReturn the target mapped entity, which is an inspect() of the class or aliased class that is referred towards. F configurerqzErelationship '%s' expects a class or a mapper argument (received: %s)N)r preloaded orm_mapperrr; string_types_clsregistry_resolve_namerrZMapper class_mapperrrCrrrDro)rb mapperlibr;r}r*r*r+r}+s,      zRelationshipProperty.entitycCs|jjS)zReturn the targeted :class:`_orm.Mapper` for this :class:`.RelationshipProperty`. This is a lazy-initializing static attribute. )r}rqr~r*r*r+rqPszRelationshipProperty.mappercsd||||||j|||j t t | | d|_dS)N))r6r5)_check_conflicts_process_dependent_arguments_setup_registry_dependencies_setup_join_conditions_check_cascade_settingsr _post_init_generate_backref_join_condition"_warn_for_conflicting_sync_targetsr8r-do_initZ _get_strategyrr~rfr*r+r!Zs  zRelationshipProperty.do_initcCs|jjj|jjjdSr)rrqregistryZ_set_depends_onr}r~r*r*r+rfs z1RelationshipProperty._setup_registry_dependenciesc Cs8dD]V}t||}t|tjrr<rGrIr<)Z favor_tables)r=r>Nargnamezsecondary argument %s passed to to relationship() %s must be a Table object or other FROM clause; can't send a mapped class directly as rows in 'secondary' are persisted independently of a class that is mapped to that same table.Fcss |]}tjtj|ddVqdS)r_r#Nrr&rr'rrr*r*r+ s zDRelationshipProperty._process_dependent_arguments..css |]}tjtj|ddVqdS)rcr#Nr%r&r*r*r+r's css |]}tjtj|ddVqdS)rIr#Nr%r&r*r*r+r's )rrrrsetattr_clsregistry_resolve_argrrr rr&rr'r<rCrDr_tupleZto_list column_setZ to_column_setrGrIr}persist_selectabletarget)rbattr attr_valuevalr*r*r+rksX           z1RelationshipProperty._process_dependent_argumentscCst|jj|jj|jj|jj|j|j|j|jj|j j|j |j |j |j ||j |jd|_}|j|_|j|_|j|_|j |_ |j|_ |j|_|j|_|j|_|j|_dS)N)parent_persist_selectablechild_persist_selectableparent_local_selectablechild_local_selectabler=r<r>parent_equivalentschild_equivalentsconsider_as_foreign_keysrRrIself_referentialrs support_synccan_be_synced_fn) JoinConditionrr,r} local_tabler=r<r>Z_equivalent_columnsrqrGrRrIrrA_columns_are_mappedrr@remote_columns local_columnssynchronize_pairsforeign_key_columnsZ_calculated_foreign_keyssecondary_synchronize_pairs)rbZjcr*r*r+rs6 z+RelationshipProperty._setup_join_conditionscCs |jdS)Nr_clsregistry_resolversr~r*r*r+r)sz-RelationshipProperty._clsregistry_resolve_argcCs |jdS)NrrCr~r*r*r+rsz.RelationshipProperty._clsregistry_resolve_namezsqlalchemy.orm.clsregistrycCstjjj}||jj|Sr)rrZorm_clsregistry _resolverrrn)rbrEr*r*r+rDs z+RelationshipProperty._clsregistry_resolverscCsPtjj}|jjrL|j|jjdd|jsLt d|j|jjj |jjj fdS)zOTest that this relationship is legal, warn about inheritance conflicts.FrzAttempting to assign a new relationship '%s' to a non-primary mapper on class '%s'. New relationships can only be added to the primary mapper, i.e. the very first mapper created for class '%s' N) rrrr non_primaryrrn has_propertyrorCrDr)rbrr*r*r+rs z%RelationshipProperty._check_conflictscCs|jS)z\Return the current cascade setting for this :class:`.RelationshipProperty`. )rr~r*r*r+r^szRelationshipProperty.cascadecCs||dSr) _set_cascaderbr^r*r*r+r^ scCsft|}|jr:t|tj}|r:tddt|d|j krN| |||_ |j rb||j _ dS)NzsCascade settings "%s" apply to persistence operations and should not be combined with a viewonly=True relationship., rq)rrArY differenceZ_viewonly_cascadesrCrDjoinsorted__dict__rr_dependency_processorr^)rbr^Z non_viewonlyr*r*r+rH s    z!RelationshipProperty._set_cascadecCs|jrV|jsV|jtks |jtkrVtjd||jtkr6dnd|jjj |j jj ddd|j dkr~d|kspd |kr~td ||jr|j j |j|jjfdS) NaFor %(direction)s relationship %(rel)s, delete-orphan cascade is normally configured only on the "one" side of a one-to-many relationship, and not on the "many" side of a many-to-one or many-to-many relationship. To force this relationship to allow a particular "%(relatedcls)s" object to be referred towards by only a single "%(clsname)s" object at a time via the %(rel)s relationship, which would allow delete-orphan cascade to take place in this direction, set the single_parent=True flag.z many-to-onez many-to-many)relr@ZclsnameZ relatedclsZbbf0codeallrr z^On %s, can't set passive_deletes='all' in conjunction with 'delete' or 'delete-orphan' cascade)Z delete_orphanrFr@rrrCrDrrnrrqr0primary_mapperZ_delete_orphansrrorIr*r*r+r sD   z,RelationshipProperty._check_cascade_settingscCs|j|jko|j|j|kS)zaReturn True if this property will persist values on behalf of the given mapper. )roZ relationshipsrpr*r*r+ _persists_forJ s z"RelationshipProperty._persists_forcGsL|D]B}|jdk r"|jj|r"q|jjj|s|jj|sdSqdS)zReturn True if all columns in the given collection are mapped by the tables referenced by this :class:`.Relationship`. NFT)r<rcontains_columnrr,r-)rbcolsrr*r*r+r=U s   z(RelationshipProperty._columns_are_mappedc Cs|jjr dS|jdk rp|jspt|jtjr<|ji}}n |j\}}|j}|j st |  |j }|D](}||rn|j sntd|||fqn|jdk r|d|jj}|d|jj}n*|d|jj}|dd}|rtd|d|j}|j} |d|j|d|j|d |j|d |j||_t| |j||f||jd |} | || |jr|!|jdS) zlInterpret the 'backref' instruction to create a :func:`_orm.relationship` complementary to this one.Nz]Error creating backref '%s' on relationship '%s': property of that name exists on mapper '%s'r=r>zOCan't assign 'secondaryjoin' on a backref against a non-secondary relationship.rcrAr?r1rE)rcr`)"rrFrar`rrrrqrTZconcreterYZiterate_to_rootunionZself_and_descendantsrGrCrDr<poprsecondaryjoin_minus_localprimaryjoin_minus_localprimaryjoin_reverse_remoterrG setdefaultrAr?r1rEr-roZ_configure_propertyr) rbZ backref_keyrrqcheckmrrrcrr.r*r*r+rf sx       z&RelationshipProperty._generate_backrefzsqlalchemy.orm.dependencycCs6tjj}|jdkr|jtk |_|js2|j||_ dSr) rrZorm_dependencyr:r@rrAZDependencyProcessorZfrom_relationshiprO)rb dependencyr*r*r+r s  zRelationshipProperty._post_initcCs |j}|jS)zPmemoize the 'use_get' attribute of this RelationshipLoader's lazyloader.)rZuse_get)rbZstrategyr*r*r+r szRelationshipProperty._use_getcCs|j|jSr)rqrrr~r*r*r+r sz)RelationshipProperty._is_self_referentialr*cCsd}|r|jdk rd}|dkr2|r2|jjr2|jj}|rP|j}|dkrV|j}d}n|j}|dkr|jj}|jjrrd}|jr|dkr|}d}n||jjk s|jjrd}|j } |p|dk o||jjk p|j }|j |||| |\} } } } }|dkr|jj }|dkr |jj }| | ||| | fS)NFT)r<rZwith_polymorphicrrqrr}rrrZ _is_subqueryr join_targetsr<)rbrrrrrr{aliasedZ dest_mapperrr=r>r<rr*r*r+r sp    z"RelationshipProperty._create_joins)TN)FNT)FN)N)FNNNFr*)6rrrrZstrategy_wildcard_keyZ inherit_cacherrirOr9rBrrr rUrrrrrrrrrr r|r  staticmethodr rrrZpreload_moduler}rqr!rrrr)rrDrr^setterrHrrUr=rrrrr __classcell__r*r*rfr+r-\s A <  D^ Y  8  ) # R      , M   r-cs&fdd|dk r|}d|S)Ncs*t|tjr|}|jd|S)N)clone)rr ColumnClausercopyZ_copy_internalselem annotationsrfr*r+rf s  z _annotate_columns..cloner*)elementrlr*rkr+r% s r%c @seZdZdddddddddddddf ddZdd Zd d Zd d ZeddZeddZ e j ddZ ddZ e j ddZe j ddZddZddZddZd d!Zd"d#Zd$d%Zd&d'Zd(d)Zd*d+Zd,d-Zd.d/Zd0d1Zd2d3Zd4d5Zd6d7Zd8d9Zd:d;Z dd?Z"e#$Z%d@dAZ&e j dBdCZ'e j dDdEZ(e j dFdGZ)dHdIZ*dJdKZ+dQdMdNZ,dRdOdPZ-dS)Sr;NFTcGsdS)NTr*)rr*r*r+7 zJoinCondition.cCs||_||_||_||_||_| |_||_||_||_| |_ | |_ | |_ ||_ | |_ ||_||_|||||||||jd|jdk r||jd|||dSNTF)r1r3r2r4r5r6r=r>r<r7re _remote_sidersr8r9r:_determine_joins_sanitize_joins _annotate_fks_annotate_remote_annotate_local_annotate_parentmapper _setup_pairs_check_foreign_cols_determine_direction_check_remote_side _log_joins)rbr1r2r3r4r=r<r>r5r6r7rRrIr8rsr9r:r*r*r+r9& s: zJoinCondition.__init__cCs|jdkrdS|jj}|d|j|j|d|j|j|d|jddd|jD|d|jddd|jpxgD|d |jdd d|jD|d |jdd d|j D|d |jddd|j D|d|j|j dS)Nz%s setup primary join %sz%s setup secondary join %sz%s synchronize pairs [%s],css|]\}}d||fVqdSz (%s => %s)Nr*rlrr*r*r+r'` sz+JoinCondition._log_joins..z#%s secondary synchronize pairs [%s]css|]\}}d||fVqdSr~r*rr*r*r+r'g sz%s local/remote pairs [%s]css|]\}}d||fVqdS)z (%s / %s)Nr*rr*r*r+r'o sz%s remote columns [%s]css|]}d|VqdSz%sNr*rrr*r*r+r'v sz%s local columns [%s]css|]}d|VqdSrr*rr*r*r+r'{ sz%s relationship direction %s) rsloggerrXr=r>rLr@rBrRr>r?r@)rbrr*r*r+r|W sJ    zJoinCondition._log_joinscCs.t|jdd|_|jdk r*t|jdd|_dS)abremove the parententity annotation from our join conditions which can leak in here based on some declarative patterns and maybe others. We'd want to remove "parentmapper" also, but apparently there's an exotic use case in _join_fixture_inh_selfref_w_entity that relies upon it being present, see :ticket:`3364`. )rm proxy_keyvaluesN)rr=r>r~r*r*r+rs s  zJoinCondition._sanitize_joinsc Cs|jdk r$|jdkr$td|jz|jp.d}|jdk r|jdkr\t|j|j|j|d|_|j dkrt|j |j|j |d|_ n"|j dkrt|j |j|j |d|_ Wntj k r}zJ|jdk rt jt d|j|jf|dnt jt d|j|dW5d}~XYnntjk r|}zL|jdk rRt jtd|j|jf|dnt jtd|j|dW5d}~XYnXdS) zDetermine the 'primaryjoin' and 'secondaryjoin' attributes, if not passed to the constructor already. This is based on analysis of the foreign key relationships between the parent and target mapped selectables. NzMProperty %s specified with secondary join condition but no secondary argument)Za_subsetr7a1Could not determine join condition between parent/child tables on relationship %s - there are no foreign keys linking these tables via secondary table '%s'. Ensure that referencing columns are associated with a ForeignKey or ForeignKeyConstraint, or specify 'primaryjoin' and 'secondaryjoin' expressions.)from_aCould not determine join condition between parent/child tables on relationship %s - there are no foreign keys linking these tables. Ensure that referencing columns are associated with a ForeignKey or ForeignKeyConstraint, or specify a 'primaryjoin' expression.alCould not determine join condition between parent/child tables on relationship %s - there are multiple foreign key paths linking the tables via secondary table '%s'. Specify the 'foreign_keys' argument, providing a list of those columns which should be counted as containing a foreign key reference from the secondary table to each of the parent and child tables.a'Could not determine join condition between parent/child tables on relationship %s - there are multiple foreign key paths linking the tables. Specify the 'foreign_keys' argument, providing a list of those columns which should be counted as containing a foreign key reference to the parent table.)r>r<rCrDrsr7rr2r4r=r1r3ZNoForeignKeysErrorrZraise_ZAmbiguousForeignKeysError)rbr7ZnfeZafer*r*r+rr s                 zJoinCondition._determine_joinscCst|jddSNlocalr#r)rr=r~r*r*r+r[ sz%JoinCondition.primaryjoin_minus_localcCst|jddSr)rr>r~r*r*r+rZ sz'JoinCondition.secondaryjoin_minus_localcCs@|jrdd}t|ji|S|jr2t|jddSt|jSdS)a(Return the primaryjoin condition suitable for the "reverse" direction. If the primaryjoin was delivered here with pre-existing "remote" annotations, the local/remote annotations are reversed. Otherwise, the local/remote annotations are removed. cSs\d|jkr,t|j}|d=d|d<||Sd|jkrXt|j}|d=d|d<||SdS)Nr#Tr) _annotationsrZ_with_annotations)rmrlr*r*r+replace s     z9JoinCondition.primaryjoin_reverse_remote..replacerrN)_has_remote_annotationsrreplacement_traverser=_has_foreign_annotationsr)rbrr*r*r+r\ s  z(JoinCondition.primaryjoin_reverse_remotecCs&t|iD]}||jkr dSq dSrp)riterater)rbr annotationrr*r*r+_has_annotation% s zJoinCondition._has_annotationcCs||jdSNr,rr=r~r*r*r+r, sz&JoinCondition._has_foreign_annotationscCs||jdSNr#rr~r*r*r+r0 sz%JoinCondition._has_remote_annotationscCs&|jr dS|jr|n|dS)zAnnotate the primaryjoin and secondaryjoin structures with 'foreign' annotations marking columns considered as foreign. N)rr7_annotate_from_fk_list_annotate_present_fksr~r*r*r+rt4 s  zJoinCondition._annotate_fkscs>fdd}tji|_jdk r:tji|_dS)Ncs|jkr|ddiSdSNr,T)r7rrr~r*r+check_fkC s z6JoinCondition._annotate_from_fk_list..check_fkrrr=r>)rbrr*r~r+rB s  z$JoinCondition._annotate_from_fk_listcsr|jdk rt|jjntfddfdd}t|jid|i|_|jdk rnt|jid|i|_dS)Ncsdt|tjr4t|tjr4||r&|S||r4|Sr`|krL|krL|S|kr`|kr`|SdSr)rrZColumnZ references)ab) secondarycolsr*r+ is_foreignU s  z7JoinCondition._annotate_present_fks..is_foreigncst|jtjrt|jtjs dSd|jjkrd|jjkr|j|j}|dk r||jrn|jddi|_n||jr|jddi|_dSr)rleftrZ ColumnElementrightrcomparer)binaryr)rr*r+ visit_binaryb s&     z9JoinCondition._annotate_present_fks..visit_binaryr) r<rr+rrYrrr=r>rbrr*)rrr+rO s    z#JoinCondition._annotate_present_fkscs>|j|jdgfdd}t|jid|idS)zvReturn True if the join condition contains column comparisons where both columns are in both tables. Fcsb|j|j}}t|tjr^t|tjr^|jr^|jr^|jr^|jr^dd<dS)NTr)rrrrrgZis_derived_fromtable)rrfmtptresultr*r+r s      z;JoinCondition._refers_to_parent_table..visit_binaryrr)r1r2rrr=rr*rr+_refers_to_parent_table} s  z%JoinCondition._refers_to_parent_tablecCst|j|jS)z5Return True if parent/child tables have some overlap.)r r1r2r~r*r*r+_tables_overlap szJoinCondition._tables_overlapcCsl|jr dS|jdk r|nJ|js*|jr4|n4|rN|dddn|r`| n| dS)zAnnotate the primaryjoin and secondaryjoin structures with 'remote' annotations marking columns considered as part of the 'remote' side. NcSs d|jkSrrrr*r*r+rn roz0JoinCondition._annotate_remote..F) rr<_annotate_remote_secondaryrerq_annotate_remote_from_argsr_annotate_selfrefr_annotate_remote_with_overlap%_annotate_remote_distinct_selectablesr~r*r*r+ru s     zJoinCondition._annotate_remotecs4fdd}tji|_tji|_dS)z^annotate 'remote' in primaryjoin, secondaryjoin when 'secondary' is present. cs jj|r|ddiSdSNr#T)r<rrVrrmr~r*r+repl sz6JoinCondition._annotate_remote_secondary..replNrrbrr*r~r+r s z(JoinCondition._annotate_remote_secondarycs*fdd}tjid|i_dS)zxannotate 'remote' in primaryjoin, secondaryjoin when the relationship is detected as self-referential. csx|j|j}t|jtjrht|jtjrh|jrF|jddi|_|jrt|st|jddi|_n stdSr)rrrrrrgr_warn_non_column_elements)rZequatedfnremote_side_givenrbr*r+r s z5JoinCondition._annotate_selfref..visit_binaryrN)rrr=)rbrrrr*rr+r s  zJoinCondition._annotate_selfrefcsn|jr(|jrtddd|jDn|j|rL|fdddnfdd}t|ji||_d S) zannotate 'remote' in primaryjoin, secondaryjoin when the 'remote_side' or '_local_remote_pairs' arguments are used. zTremote_side argument is redundant against more detailed _local_remote_side argument.cSsg|] \}}|qSr*r*rr*r*r+r sz.cs|kSrr*rrIr*r+rn roz:JoinCondition._annotate_remote_from_args..Tcs|tkr|ddiSdSr)rYrrrr*r+r s z6JoinCondition._annotate_remote_from_args..replN) rerqrCrDrrrrr=rr*rr+r s z(JoinCondition._annotate_remote_from_argscsNfdd}jdk o$jjjjk fddtjid|i_dS)zannotate 'remote' in primaryjoin, secondaryjoin when the parent/child tables have some set of tables in common, though is not a fully self-referential relationship. cs0|j|j\|_|_|j|j\|_|_dSrrr)r)proc_left_rightr*r+r s zAJoinCondition._annotate_remote_with_overlap..visit_binaryNcst|tjrDt|tjrDjj|rjj|r|ddi}nXrl|j dj j krl|ddi}n0r|j dj j kr|ddi}n ||fS)Nr#Trx) rrrgr2rrVr1rrrrsrqrr)check_entitiesrbr*r+r s, zDJoinCondition._annotate_remote_with_overlap..proc_left_rightr)rsrqrrrr=rr*)rrrbr+r s z+JoinCondition._annotate_remote_with_overlapcs"fdd}tji|_dS)z}annotate 'remote' in primaryjoin, secondaryjoin when the parent/child tables are entirely separate. cs<jj|r8jj|r*jj|r8|ddiSdSr)r2rrVr3r4rrr~r*r+r0 s   zAJoinCondition._annotate_remote_distinct_selectables..replN)rrr=rr*r~r+r) s  z3JoinCondition._annotate_remote_distinct_selectablescCstd|jdS)NzNon-simple column elements in primary join condition for property %s - consider using remote() annotations to mark the remote side.)rrPrsr~r*r*r+r; s z'JoinCondition._warn_non_column_elementscs`||jdrdS|jr0tdd|jDnt|jjfdd}t|ji||_dS)aCAnnotate the primaryjoin and secondaryjoin structures with 'local' annotations. This annotates all column elements found simultaneously in the parent table and the join condition that don't have a 'remote' annotation set up from _annotate_remote() or user-defined. rNcSsg|] \}}|qSr*r*rr*r*r+rR sz1JoinCondition._annotate_local..cs$d|jkr |kr |ddiSdS)Nr#rT)rrriZ local_sider*r+locals_W sz.JoinCondition._annotate_local..locals_) rr=rerr+r1rrr)rbrr*rr+rvB s  zJoinCondition._annotate_localcs0jdkrdSfdd}tji|_dS)Ncs<d|jkr|djjiSd|jkr8|djjiSdS)Nr#rxr)rrrsrqrrir~r*r+parentmappers_c s  z.parentmappers_)rsrrr=)rbrr*r~r+rw_ s  z$JoinCondition._annotate_parentmappercCs|jstd|jfdS)NaRelationship %s could not determine any unambiguous local/remote column pairs based on join condition and remote_side arguments. Consider using the remote() annotation to accurately mark those elements of the join condition that are on the remote side of the relationship.)rRrCrDrsr~r*r*r+r{m s z JoinCondition._check_remote_sidecCsd}||d}t|}|r(t|j}n t|j}|jr<|sF|jsJ|rJdS|jr|r|sd|rbdpdd||jf}|d7}t|n*d|rdpd||jf}|d 7}t|dS) zHCheck the foreign key columns collected and emit error messages.Fr,NzCould not locate any simple equality expressions involving locally mapped foreign key columns for %s join condition '%s' on relationship %s.primaryr<a Ensure that referencing columns are associated with a ForeignKey or ForeignKeyConstraint, or are annotated in the join condition with the foreign() annotation. To allow comparison operators other than '==', the relationship can be marked as viewonly=True.z`Could not locate any relevant foreign key columns for %s join condition '%s' on relationship %s.z Ensure that referencing columns are associated with a ForeignKey or ForeignKeyConstraint, or are annotated in the join condition with the foreign() annotation.)_gather_columns_with_annotationboolr@rBr9rsrCrD)rbrrZcan_syncZ foreign_colsZ has_foreignerrr*r*r+ryz sR       z!JoinCondition._check_foreign_colscCs|jdk rt|_nt|jj}t|jj}||j }||j }|r|r| |j dd}t dd| |j dD}|r|r|j |j}||}||}|r|st|_q|r|st|_qtd|jn(|rt|_n|rt|_ntd|jdS)z[Determine if this relationship is one to many, many to one, many to many. Nr#r,cSsg|]}d|jkr|qS)r#r)rrr*r*r+r s z6JoinCondition._determine_direction..aDCan't determine relationship direction for relationship '%s' - foreign key columns within the join condition are present in both the parent and the child's mapped tables. Ensure that only those columns referring to a parent column are marked as foreign, either via the foreign() annotation or via the foreign_keys argument.zCan't determine relationship direction for relationship '%s' - foreign key columns are present in neither the parent nor the child's mapped tables)r>rr@rr+r1rr2 intersectionrArr=rYr>r?rKr rrCrDrs)rbZ parentcolsZ targetcolsZ onetomany_fkZ manytoone_fkZonetomany_localZmanytoone_localZ self_equatedr*r*r+rz sX        z"JoinCondition._determine_directioncCsdd|DS)zprovide deannotation for the various lists of pairs, so that using them in hashes doesn't incur high-overhead __eq__() comparisons against original columns mapped. cSs g|]\}}||fqSr*Z _deannotaterr*r*r+r sz3JoinCondition._deannotate_pairs..r*)rbrr*r*r+_deannotate_pairs szJoinCondition._deannotate_pairscszg}tgg}fdd}j|fj|ffD]\}}|dkrFq4|||q4_|_|_dS)Ncsfdd}t||dS)Ncsd|jkr.d|jkr.|r.||fn,d|jkrZd|jkrZ|rZ||f|jtjkr||rd|jkr||fnd|jkr||fdS)Nr#r,)rr:r operatorreqr)rrr)rlrprbr*r+r s,  z.go..visit_binaryr!)joincondrrrrb)rr+go sz&JoinCondition._setup_pairs..go)rZ OrderedSetr=r>rrRr@rB)rbZ sync_pairsZsecondary_sync_pairsrrrr*rr+rx s     zJoinCondition._setup_pairsc s|js dSdd|jDdd|jDD]b\}|jkrVt|j|i|j<q*g}|j}|D]\}}|jj sl||jj krl|j |jj krl|jj |j krld|jj krld|j krl|jj |j sl|jj|jsl|jj |jsl|jj|j sl|jj |j ks|jj |j sl|||fql|r~tjd|j|dtfdd|Dd td d|D|jfd d ||j|j<q*dS) NcSsg|]\}}||fqSr*r*rrto_r*r*r+rO szDJoinCondition._warn_for_conflicting_sync_targets..cSsg|]\}}||fqSr*r*rr*r*r+rQ sz__*arelationship '%s' will copy column %s to column %s, which conflicts with relationship(s): %s. If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. To silence this warning, add the parameter 'overlaps="%s"' to the '%s' relationship.rJc3s |]\}}d||fVqdS)z'%s' (copies %s to %s)Nr*)rprfr_rr*r+r' szCJoinCondition._warn_for_conflicting_sync_targets..r}css|]\}}|jVqdSrro)rrfrr*r*r+r' sZqzyxrQ)r9r@rB_track_overlapping_sync_targetsweakrefWeakKeyDictionaryrsrhrqZ_dispose_calledrZror]rZ is_siblingrrrrPrLrM)rbrZ other_propsZ prop_to_fromrrr*rr+r F sx          z0JoinCondition._warn_for_conflicting_sync_targetscCs |dSr_gather_join_annotationsr~r*r*r+r> szJoinCondition.remote_columnscCs |dS)Nrrr~r*r*r+r? szJoinCondition.local_columnscCs |dSrrr~r*r*r+rA sz!JoinCondition.foreign_key_columnscCs>t||j|}|jdk r0|||j|dd|DS)NcSsh|] }|qSr*rr&r*r*r+ sz9JoinCondition._gather_join_annotations..)rYrr=r>update)rbrsr*r*r+r s  z&JoinCondition._gather_join_annotationscs&ttfddt|iDS)Ncsg|]}|jr|qSr*)issubsetrrrr*r+r s zAJoinCondition._gather_columns_with_annotation..)rYrr)rbrrr*rr+r s   z-JoinCondition._gather_columns_with_annotationr*c CsLt|ddi}|j|j|j}}}|dk rF|dk r>||@}n||@}|rp|dk rb|tj|@}n|tj|@}|r:|dk r|jdd}t|tdd} t||j d | } |dk rt|tdd t||j d} | |}nr<rrrr_ColInAnnotationsr6chainr5rr) rbrrrbrr{r=r>r<Zprimary_aliasizerZsecondary_aliasizerrr*r*r+ra s       zJoinCondition.join_targetsc stt}|jdk rTtt|jD]"\}}|||f|||<q.n6sr|jD]\}}|||<q^n|jD]\}}|||<qxfdd}|j}|jdksst |i|}|jdk r|j}rt |i|}t ||}fddD}|||fS)NcsXsd|jks,rTr|ks,sTd|jkrT|krLtjdd|jdd|<|SdS)Nrr#T)rr)rrrrrbindsZ has_secondarylookuprr*r+ col_to_bind2s. z5JoinCondition.create_lazy_clause..col_to_bindcsi|]}|j|qSr*rr)rr*r+ Qsz4JoinCondition.create_lazy_clause..) rZ column_dictr> collections defaultdictlistrRrr=rrrr) rbrZequated_columnsrrrZ lazywherer>rr*rr+create_lazy_clause s@       z JoinCondition.create_lazy_clause)Nr*)F).rrrr9r|rsrrr|r[rZrrr\rrrrtrrrrrurrrrrrrvrwr{ryrzrrxrrrr r>r?rArrrarr*r*r*r+r;% sx 1(i   "   . / BT +W     ar;c@s$eZdZdZdZddZddZdS)rzs                              N 9