+
    i$                       ^ RI Ht ^ RIHt ^ RIHt ^ RIHt ^ RIHt ^ RIHt ^RIH	t	 ^RIH
t
 ^R	IHt ^R
IHt ^RIHt ^RIHt ^RIHt ^RIHt ^RIHt ^RIHt ^RIHt ^RIHt ^RIHt ^RIHt ^RIHt ^RIHt ^RIH t  ^RIH!t! ^RI"H#t# ^RI$H%t% R&t&R R lt' ! R R]4      t ! R R ]4      t( ! R! R"](4      t) ! R# R$](4      t*R%# )'    )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)Selfr   c                    V ^8  d   QhRRRR/# )   tabler   returnr    )formats   "ڇC:\Users\petid\OneDrive\Desktop\Maestro\MAESTRO CLAUDE\MAESTRO\maestro-backend\venv\Lib\site-packages\sqlalchemy\dialects\sqlite\dml.py__annotate__r%   '   s      #      c                    \        V 4      # )a+  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   )r    s   &r$   insertr(   '   s    " %=r&   c                      ] tR t^;tRtRtRt]P                  R R l4       t	]
! RRR/R7      t]]RR
 R ll4       4       t]]RR R ll4       4       tRtR	# )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                   V ^8  d   QhRR/# )r   r!   z6ReadOnlyColumnCollection[str, KeyedColumnElement[Any]]r"   )r#   s   "r$   r%   Insert.__annotate__O   s     : :	?:r&   c                D    \        V P                  RR7      P                  # )aj  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.   Insert.excludedN   s    , TZZj1999r&   _post_values_clausezCThis Insert construct already has an ON CONFLICT clause established)msgsNc          
     ,    V ^8  d   QhRRRRRRRRR	R
/# )r   index_elementsr	   index_wherer
   set_r   wherer   r!   r   r"   )r#   s   "r$   r%   r,   p   s<     1 111 ,1 	1
 !1 
1r&   c                (    \        WW44      V n        V # )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).

)OnConflictDoUpdater3   )r1   r6   r7   r8   r9   s   &&&&&r$   on_conflict_do_updateInsert.on_conflict_do_updaten   s    ` $6$
  r&   c               $    V ^8  d   QhRRRRRR/# )r   r6   r	   r7   r
   r!   r   r"   )r#   s   "r$   r%   r,      s(      1 , 
	r&   c                &    \        W4      V n        V # )am  
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.

)OnConflictDoNothingr3   )r1   r6   r7   s   &&&r$   on_conflict_do_nothingInsert.on_conflict_do_nothing   s    * $7$
  r&   )r3   NNNNNN)__name__
__module____qualname____firstlineno____doc__stringify_dialectinherit_cacher   memoized_propertyr.   r   _on_conflict_exclusiver   r<   rA   __static_attributes__r"   r&   r$   r   r   ;   s     !M	: :. 0! $0
 1  1f   r&   c                  @    ] tR t^t$ RtR]R&   R]R&   R
R R lltR	tR# )OnConflictClauser*   z.Optional[List[Union[str, schema.Column[Any]]]]inferred_target_elementsz/Optional[Union[ColumnElement[Any], TextClause]]inferred_target_whereclauseNc                    V ^8  d   QhRRRR/# )r   r6   r	   r7   r
   r"   )r#   s   "r$   r%   OnConflictClause.__annotate__   s      1 ,r&   c                	   Vem   V Uu. uF(  p\         P                  ! \        P                  V4      NK*  	  upV n        Ve&   \         P                  ! \        P
                  V4      MR V n        R # R ;V n        V n        R # u upi )N)r   expectr   DDLConstraintColumnRolerQ   WhereHavingRolerR   )r1   r6   r7   columns   &&& r$   __init__OnConflictClause.__init__   s    
 % --,F   !>!>G,-D) *	   ))
  , D)0-s   .B)rQ   rR   rD   )rE   rF   rG   rH   rJ   __annotations__rZ   rN   r"   r&   r$   rP   rP      s"     LL"  r&   rP   c                      ] tR t^tRtRtR# )r@   rA   r"   N)rE   rF   rG   rH   __visit_name__rN   r"   r&   r$   r@   r@      s    -Nr&   r@   c                  L   a  ] tR t^t$ RtR]R&   R]R&   R	R V 3R llltRtV ;t# )
r;   r<   z0List[Tuple[Union[schema.Column[Any], str], Any]]update_values_to_setzOptional[ColumnElement[Any]]update_whereclausec               (    V ^8  d   QhRRRRRRRR/# )	r   r6   r	   r7   r
   r8   r   r9   r   r"   )r#   s   "r$   r%   OnConflictDoUpdate.__annotate__   s2     
 
1
 ,
 	

 !
r&   c                	  < \         SV `  VVR 7       \        V\        4      '       d   V'       g   \	        R4      hM-\        V\
        4      '       d   \        V4      pM\	        R4      hVP                  4        UUu. uF,  w  rV\        P                  ! \        P                  V4      V3NK.  	  uppV n        Ve-   \        P                  ! \        P                  V4      V n        R# RV n        R# u uppi ))r6   r7   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 objectN)superrZ   
isinstancedict
ValueErrorr   itemsr   rV   r   DMLColumnRoler`   rX   ra   )r1   r6   r7   r8   r9   keyvalue	__class__s   &&&&&  r$   rZ   OnConflictDoUpdate.__init__   s     	)# 	 	

 dD!! !MNN .//:D$  #jjl%
*
 e1137?*%
!   U22E: 	  		%
s   =2C1)r`   ra   rC   )	rE   rF   rG   rH   r^   r\   rZ   rN   __classcell__)rm   s   @r$   r;   r;      s#    ,NJJ44
 
 
r&   r;   N)r   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(   rP   r@   r;   r"   r&   r$   <module>r}      s    #      / , % '     , * # ( 0 / ) ) . & # 
(@^ @F} @.* .%
) %
r&   