Ë
    ðmxiX  ã                  ól  — 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"e	eeef   eee#ef      eeef   f   Z$y)é    )Úannotations)ÚAny)ÚDict)ÚList)ÚMapping)ÚOptional)ÚTuple)ÚUnioné   )Úexc)Úutil)Ú_DMLTableArgument)Ú_exclusive_against)Ú_generative)ÚColumnCollection)ÚReadOnlyColumnCollection©ÚInsert)ÚClauseElement)ÚKeyedColumnElement)Úalias)ÚNamedFromClause)ÚSelf)r   Úinsertr   c                ó   — t        | «      S )a(  Construct a MySQL/MariaDB-specific variant :class:`_mysql.Insert`
    construct.

    .. container:: inherited_member

        The :func:`sqlalchemy.dialects.mysql.insert` function creates
        a :class:`sqlalchemy.dialects.mysql.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:`_mysql.Insert` construct includes additional methods
    :meth:`_mysql.Insert.on_duplicate_key_update`.

    r   )Útables    úT/home/htdocs/ttos/venv/lib/python3.12/site-packages/sqlalchemy/dialects/mysql/dml.pyr   r   #   s   € ô  �%‹=Ðó    c                  ó„   — e Zd ZdZdZdZe	 	 dd„«       Zej                  dd„«       Z
e edddi¬«      dd	„«       «       Zy
)r   a  MySQL-specific implementation of INSERT.

    Adds methods for MySQL-specific syntaxes such as ON DUPLICATE KEY UPDATE.

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

    .. versionadded:: 1.2

    ÚmysqlFc                ó.   — | j                   j                  S )aŸ  Provide the "inserted" namespace for an ON DUPLICATE KEY UPDATE
        statement

        MySQL's ON DUPLICATE KEY UPDATE clause allows reference to the row
        that would be inserted, via a special function called ``VALUES()``.
        This attribute provides all columns in this row to be referenceable
        such that they will render within a ``VALUES()`` function inside the
        ON DUPLICATE KEY UPDATE clause.    The attribute is named ``.inserted``
        so as not to conflict with the existing
        :meth:`_expression.Insert.values` method.

        .. tip::  The :attr:`_mysql.Insert.inserted` 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.inserted.some_column``), but special names and
            dictionary method names should be accessed using indexed access,
            such as ``stmt.inserted["column name"]`` or
            ``stmt.inserted["values"]``.  See the docstring for
            :class:`_expression.ColumnCollection` for further examples.

        .. seealso::

            :ref:`mysql_insert_on_duplicate_key_update` - example of how
            to use :attr:`_expression.Insert.inserted`

        )Úinserted_aliasÚcolumns©Úselfs    r   ÚinsertedzInsert.insertedE   s   € ð@ ×"Ñ"×*Ñ*Ð*r   c                ó0   — t        | j                  d¬«      S )Nr&   )Úname)r   r   r$   s    r   r"   zInsert.inserted_aliasg   s   € ä�T—Z‘Z jÔ1Ð1r   Ú_post_values_clausezDThis Insert construct already has an ON DUPLICATE KEY clause present)Úmsgsc                óÈ   — |r|rt        j                  d«      ‚|r)t        |«      dkD  rt        j                  d«      ‚|d   }n|}t        | j                  |«      | _        | S )a—  
        Specifies the ON DUPLICATE KEY UPDATE clause.

        :param \**kw:  Column keys linked to UPDATE values.  The
         values may be any SQL expression or supported literal Python
         values.

        .. 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 DUPLICATE KEY UPDATE
           style of UPDATE, unless values are manually specified here.

        :param \*args: As an alternative to passing key/value parameters,
         a dictionary or list of 2-tuples can be passed as a single positional
         argument.

         Passing a single dictionary is equivalent to the keyword argument
         form::

            insert().on_duplicate_key_update({"name": "some name"})

         Passing a list of 2-tuples indicates that the parameter assignments
         in the UPDATE clause should be ordered as sent, in a manner similar
         to that described for the :class:`_expression.Update`
         construct overall
         in :ref:`tutorial_parameter_ordered_updates`::

            insert().on_duplicate_key_update(
                [
                    ("name", "some name"),
                    ("value", "some value"),
                ]
            )

         .. versionchanged:: 1.3 parameters can be specified as a dictionary
            or list of 2-tuples; the latter form provides for parameter
            ordering.


        .. versionadded:: 1.2

        .. seealso::

            :ref:`mysql_insert_on_duplicate_key_update`

        z9Can't pass kwargs and positional arguments simultaneouslyé   zDOnly a single dictionary or list of tuples is accepted positionally.r   )r   ÚArgumentErrorÚlenÚOnDuplicateClauser"   r)   )r%   ÚargsÚkwÚvaluess       r   Úon_duplicate_key_updatezInsert.on_duplicate_key_updatek   sw   € ñp ‘BÜ×#Ñ#ØKóð ñ Ü�4‹y˜1Š}Ü×'Ñ'ð0óð ð ˜!‘W‰FàˆFä#4Ø×Ñ ó$
ˆÔ ð ˆr   N)Úreturnz6ReadOnlyColumnCollection[str, KeyedColumnElement[Any]])r4   r   )r0   Ú
_UpdateArgr1   r   r4   r   )Ú__name__Ú
__module__Ú__qualname__Ú__doc__Ústringify_dialectÚinherit_cacheÚpropertyr&   r   Úmemoized_propertyr"   r   r   r3   © r   r   r   r   6   s|   „ ñ	ð  ÐØ€Màð+à	?ò+ó ð+ðB 
×Ñò2ó ð2ð ÙØà!ð $5ð
ôòBóó ñBr   c                  óB   — e Zd ZU dZdZded<   ded<   dZ	 	 	 	 	 	 d	d„Zy)
r/   r3   NzOptional[List[str]]Ú_parameter_orderingzDict[str, Any]Úupdater    c                óV  — || _         t        |t        «      r:|r8t        |d   t        «      r%|D ��cg c]  \  }}|‘Œ	 c}}| _        t        |«      }t        |t
        «      r|s9t        d«      ‚t        |t        «      rt        |«      }|| _        y t        d«      ‚|| _        y c c}}w )Nr   z-update parameter dictionary must not be emptyztupdate parameter must be a non-empty dictionary or a ColumnCollection such as the `.c.` collection of a Table object)	r"   Ú
isinstanceÚlistÚtupler@   ÚdictÚ
ValueErrorr   rA   )r%   r"   rA   ÚkeyÚvalues        r   Ú__init__zOnDuplicateClause.__init__À   s§   € ð -ˆÔô �fœdÔ#Ù”z &¨¡)¬UÔ3à>D×'E±
°°UªÓ'EˆDÔ$Ü˜&“\ˆFä�fœdÔ#ÙÜ ØCóð ô ˜Ô 0Ô1Ü˜&“\ˆFð ˆ�ô ð$óð ð
 ˆ�ùó! (Fs   ²B%)r"   r   rA   r5   r4   ÚNone)r6   r7   r8   Ú__visit_name__r@   Ú__annotations__r:   rJ   r>   r   r   r/   r/   ¸   s<   … Ø.€Nà/3ÐÐ,Ó3àÓØÐðØ-ðØ7Aðà	ôr   r/   N)r   r   r4   r   )%Ú
__future__r   Útypingr   r   r   r   r   r	   r
   Ú r   r   Úsql._typingr   Úsql.baser   r   r   r   Úsql.dmlr   ÚStandardInsertÚsql.elementsr   r   Úsql.expressionr   Úsql.selectabler   Úutil.typingr   Ú__all__r   r/   Ústrr5   r>   r   r   ú<module>r[      s¤   ðõ #å Ý Ý Ý Ý Ý Ý å Ý Ý ,Ý *Ý #Ý (Ý 0Ý /Ý )Ý .Ý #Ý -Ý ð €óô&ˆ^ô ôD$˜ô $ðN ØˆC�ˆHÑ�t˜E # s (™OÑ,Ð.>¸sÀC¸xÑ.HÐHñ�
r   