Ë
    ðmxi²#  ã                  ó   — d dl mZ d dlmZ d dlmZ d dlmZ d dlmZ d dlmZ ddlm	Z	 dd	lm
Z
 dd
lmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlm Z  ddlm!Z! ddl"m#Z# ddl$m%Z% dZ&d(d„Z' G d „ de«      Z G d!„ d"e«      Z( G d#„ d$e(«      Z) G d%„ d&e(«      Z*y'))é    )Úannotations)ÚAny)ÚList)ÚOptional)ÚTuple)ÚUnioné   )Ú_OnConflictIndexElementsT)Ú_OnConflictIndexWhereT)Ú_OnConflictSetT)Ú_OnConflictWhereTé   )Úutil)Ú	coercions)Úroles)Úschema)Ú_DMLTableArgument)Ú_exclusive_against)Ú_generative)ÚColumnCollection)ÚReadOnlyColumnCollection©ÚInsert)ÚClauseElement)ÚColumnElement)ÚKeyedColumnElement)Ú
TextClause)Úalias)ÚSelf)r   Úinsertr   c                ó   — t        | «      S )aW  Construct a sqlite-specific variant :class:`_sqlite.Insert`
    construct.

    .. container:: inherited_member

        The :func:`sqlalchemy.dialects.sqlite.insert` function creates
        a :class:`sqlalchemy.dialects.sqlite.Insert`.  This class is based
        on the dialect-agnostic :class:`_sql.Insert` construct which may
        be constructed using the :func:`_sql.insert` function in
        SQLAlchemy Core.

    The :class:`_sqlite.Insert` construct includes additional methods
    :meth:`_sqlite.Insert.on_conflict_do_update`,
    :meth:`_sqlite.Insert.on_conflict_do_nothing`.

    r   )Útables    úU/home/htdocs/ttos/venv/lib/python3.12/site-packages/sqlalchemy/dialects/sqlite/dml.pyr    r    '   s   € ô" �%‹=Ðó    c                  ó¾   — e Zd ZdZdZdZej                  	 	 dd„«       Z e	dddi¬«      Z
ee
	 	 	 	 d	 	 	 	 	 	 	 	 	 dd	„«       «       Zee
	 	 d	 	 	 	 	 dd
„«       «       Zy)r   a?  SQLite-specific implementation of INSERT.

    Adds methods for SQLite-specific syntaxes such as ON CONFLICT.

    The :class:`_sqlite.Insert` object is created using the
    :func:`sqlalchemy.dialects.sqlite.insert` function.

    .. versionadded:: 1.4

    .. seealso::

        :ref:`sqlite_on_conflict_insert`

    ÚsqliteFc                óD   — t        | j                  d¬«      j                  S )aÚ  Provide the ``excluded`` namespace for an ON CONFLICT statement

        SQLite's ON CONFLICT clause allows reference to the row that would
        be inserted, known as ``excluded``.  This attribute provides
        all columns in this row to be referenceable.

        .. tip::  The :attr:`_sqlite.Insert.excluded` attribute is an instance
            of :class:`_expression.ColumnCollection`, which provides an
            interface the same as that of the :attr:`_schema.Table.c`
            collection described at :ref:`metadata_tables_and_columns`.
            With this collection, ordinary names are accessible like attributes
            (e.g. ``stmt.excluded.some_column``), but special names and
            dictionary method names should be accessed using indexed access,
            such as ``stmt.excluded["column name"]`` or
            ``stmt.excluded["values"]``.  See the docstring for
            :class:`_expression.ColumnCollection` for further examples.

        Úexcluded)Úname)r   r"   Úcolumns)Úselfs    r#   r(   zInsert.excludedN   s   € ô, �T—Z‘Z jÔ1×9Ñ9Ð9r$   Ú_post_values_clausezCThis Insert construct already has an ON CONFLICT clause established)ÚmsgsNc                ó,   — t        ||||«      | _        | S )aÇ  
        Specifies a DO UPDATE SET action for ON CONFLICT clause.

        :param index_elements:
         A sequence consisting of string column names, :class:`_schema.Column`
         objects, or other column expression objects that will be used
         to infer a target index or unique constraint.

        :param index_where:
         Additional WHERE criterion that can be used to infer a
         conditional target index.

        :param set\_:
         A dictionary or other mapping object
         where the keys are either names of columns in the target table,
         or :class:`_schema.Column` objects or other ORM-mapped columns
         matching that of the target table, and expressions or literals
         as values, specifying the ``SET`` actions to take.

         .. versionadded:: 1.4 The
            :paramref:`_sqlite.Insert.on_conflict_do_update.set_`
            parameter supports :class:`_schema.Column` objects from the target
            :class:`_schema.Table` as keys.

         .. warning:: This dictionary does **not** take into account
            Python-specified default UPDATE values or generation functions,
            e.g. those specified using :paramref:`_schema.Column.onupdate`.
            These values will not be exercised for an ON CONFLICT style of
            UPDATE, unless they are manually specified in the
            :paramref:`.Insert.on_conflict_do_update.set_` dictionary.

        :param where:
         Optional argument. An expression object representing a ``WHERE``
         clause that restricts the rows affected by ``DO UPDATE SET``. Rows not
         meeting the ``WHERE`` condition will not be updated (effectively a
         ``DO NOTHING`` for those rows).

        )ÚOnConflictDoUpdater,   )r+   Úindex_elementsÚindex_whereÚset_Úwheres        r#   Úon_conflict_do_updatezInsert.on_conflict_do_updaten   s"   € ô` $6Ø˜K¨¨uó$
ˆÔ ð ˆr$   c                ó(   — t        ||«      | _        | S )aµ  
        Specifies a DO NOTHING action for ON CONFLICT clause.

        :param index_elements:
         A sequence consisting of string column names, :class:`_schema.Column`
         objects, or other column expression objects that will be used
         to infer a target index or unique constraint.

        :param index_where:
         Additional WHERE criterion that can be used to infer a
         conditional target index.

        )ÚOnConflictDoNothingr,   )r+   r0   r1   s      r#   Úon_conflict_do_nothingzInsert.on_conflict_do_nothing£   s   € ô* $7Ø˜Kó$
ˆÔ ð ˆr$   )Úreturnz6ReadOnlyColumnCollection[str, KeyedColumnElement[Any]]©NNNN)
r0   r
   r1   r   r2   r   r3   r   r8   r   ©NN)r0   r
   r1   r   r8   r   )Ú__name__Ú
__module__Ú__qualname__Ú__doc__Ústringify_dialectÚinherit_cacher   Úmemoized_propertyr(   r   Ú_on_conflict_exclusiver   r4   r7   © r$   r#   r   r   ;   sì   „ ñð !ÐØ€Mà	×Ñð:à	?ò:ó ð:ñ. 0Øà!ð $0ð
ôÐð Øð 59Ø.2Ø $Ø#'ð1à1ð1ð ,ð1ð ð	1ð
 !ð1ð 
ò1ó ó ð1ðf Øð 59Ø.2ðà1ðð ,ðð 
ò	ó ó ñr$   c                  ó:   — e Zd ZU dZded<   ded<   	 	 d	 	 	 d	d„Zy)
ÚOnConflictClauser&   z.Optional[List[Union[str, schema.Column[Any]]]]Úinferred_target_elementsz/Optional[Union[ColumnElement[Any], TextClause]]Úinferred_target_whereclauseNc                ó  — |�k|D �cg c]&  }t        j                  t        j                  |«      ‘Œ( c}| _        |�*t        j                  t        j
                  |«      | _        y d | _        y d x| _        | _        y c c}w )N)r   Úexpectr   ÚDDLConstraintColumnRolerF   ÚWhereHavingRolerG   )r+   r0   r1   Úcolumns       r#   Ú__init__zOnConflictClause.__init__Æ   s�   € ð
 Ð%ð -ö-àô × Ñ ¤×!>Ñ!>ÀÕGò-ˆDÔ)ð Ð*ô	 × Ñ Ü×)Ñ)Øóð Õ,ð ð Õ,ð ðˆDÔ)ØÕ0ùò-s   ‡+A=r:   )r0   r
   r1   r   )r;   r<   r=   r?   Ú__annotations__rM   rC   r$   r#   rE   rE   ¾   s7   … Ø ÐàLÓLð"ó ð 59Ø.2ðà1ðð ,ôr$   rE   c                  ó   — e Zd ZdZy)r6   r7   N)r;   r<   r=   Ú__visit_name__rC   r$   r#   r6   r6   Þ   s   „ Ø-�Nr$   r6   c                  óR   ‡ — e Zd ZU dZded<   ded<   	 	 	 	 d	 	 	 	 	 	 	 dˆ fd„Zˆ xZS )	r/   r4   z0List[Tuple[Union[schema.Column[Any], str], Any]]Úupdate_values_to_setzOptional[ColumnElement[Any]]Úupdate_whereclausec                óº  •— t         ‰| �  ||¬«       t        |t        «      r|s2t	        d«      ‚t        |t
        «      rt        |«      }nt	        d«      ‚|j                  «       D ��cg c]+  \  }}t        j                  t        j                  |«      |f‘Œ- c}}| _        |�*t        j                  t        j                  |«      | _        y d | _        y c c}}w )N)r0   r1   z*set parameter dictionary must not be emptyzqset parameter must be a non-empty dictionary or a ColumnCollection such as the `.c.` collection of a Table object)ÚsuperrM   Ú
isinstanceÚdictÚ
ValueErrorr   Úitemsr   rI   r   ÚDMLColumnRolerR   rK   rS   )r+   r0   r1   r2   r3   ÚkeyÚvalueÚ	__class__s          €r#   rM   zOnConflictDoUpdate.__init__è   s×   ø€ ô 	‰ÑØ)Ø#ð 	ô 	
ô
 �dœDÔ!ÙÜ Ð!MÓNÐNÜ˜Ô.Ô/Ü˜“:‰Däð$óð ð #Ÿj™j›l÷%
á��Uô ×Ñœe×1Ñ1°3Ó7¸Ò?ó%
ˆÔ!ð Ð ô ×ÑœU×2Ñ2°EÓ:ð 	Õð ð 	Õùó	%
s   Á*0Cr9   )r0   r
   r1   r   r2   r   r3   r   )r;   r<   r=   rP   rN   rM   Ú__classcell__)r]   s   @r#   r/   r/   â   sR   ø… Ø,€NàJÓJØ4Ó4ð 59Ø.2Ø $Ø#'ð
à1ð
ð ,ð
ð ð	
ð
 !÷
ñ 
r$   r/   N)r"   r   r8   r   )+Ú
__future__r   Útypingr   r   r   r   r   Ú_typingr
   r   r   r   Ú r   Úsqlr   r   r   Úsql._typingr   Úsql.baser   r   r   r   Úsql.dmlr   ÚStandardInsertÚsql.elementsr   r   r   r   Úsql.expressionr   Úutil.typingr   Ú__all__r    rE   r6   r/   rC   r$   r#   ú<module>rl      s•   ðõ #å Ý Ý Ý Ý å /Ý ,Ý %Ý 'Ý Ý Ý Ý Ý ,Ý *Ý #Ý (Ý 0Ý /Ý )Ý )Ý .Ý &Ý #Ý à
€óô(@ˆ^ô @ôF�}ô ô@.Ð*ô .ô%
Ð)õ %
r$   