Ë
    ðmxiID  ã                  ó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 e	r0d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'  e
de¬ «      Z( G d!„ d"ejB                  e(   «      Z) G d#„ d$e«      Z*d%„ Z+ G d&„ d'ejX                  e(   «      Z- G d(„ d)e-«      Z. G d*„ d+e-«      Z/ G d,„ d-e-«      Z0 G d.„ d/e-«      Z1 G d0„ d1e-«      Z2 G d2„ d3e-«      Z3y4)5é    )Úannotations)ÚAny)ÚIterable)ÚList)ÚOptional)Úoverload)ÚTuple)ÚTYPE_CHECKING)ÚTypeVaré   )Útypes)ÚARRAYé   )Ú	coercions)Úelements)Ú
expression)Ú	functions)Úroles)Úschema)ÚColumnCollectionConstraint)ÚTEXT)ÚInternalTraversal)Ú_ColumnExpressionArgument)Ú_DDLColumnArgument)ÚClauseElement)ÚColumnElement)ÚOperatorType)Ú
FromClause)Ú_CloneCallableType)Ú_TraverseInternalsTypeÚ_T)Úboundc                  ó  — e Zd ZU dZd ZdZdej                  fdej                  fdej                  fgZ	de
d<   e	 	 	 	 dd„«       Ze	 	 	 	 dd	„«       Z	 	 	 	 dd
„Z	 d	 	 	 dd„Zdd„Zej                   f	 	 	 	 	 dd„Zedd„«       Zy)Úaggregate_order_bya  Represent a PostgreSQL aggregate order by expression.

    E.g.::

        from sqlalchemy.dialects.postgresql import aggregate_order_by

        expr = func.array_agg(aggregate_order_by(table.c.a, table.c.b.desc()))
        stmt = select(expr)

    would represent the expression:

    .. sourcecode:: sql

        SELECT array_agg(a ORDER BY b DESC) FROM table;

    Similarly::

        expr = func.string_agg(
            table.c.a, aggregate_order_by(literal_column("','"), table.c.a)
        )
        stmt = select(expr)

    Would represent:

    .. sourcecode:: sql

        SELECT string_agg(a, ',' ORDER BY a) FROM table;

    .. versionchanged:: 1.2.13 - the ORDER BY argument may be multiple terms

    .. seealso::

        :class:`_functions.array_agg`

    Ú
postgresqlÚtargetÚtypeÚorder_byr    Ú_traverse_internalsc                 ó   — y ©N© ©Úselfr&   r(   s      úY/home/htdocs/ttos/venv/lib/python3.12/site-packages/sqlalchemy/dialects/postgresql/ext.pyÚ__init__zaggregate_order_by.__init__Z   ó   € ð
 ó    c                 ó   — y r+   r,   r-   s      r/   r0   zaggregate_order_by.__init__a   r1   r2   c                óz  — t        j                  t        j                  |«      | _        | j                  j
                  | _        t        |«      }|  |dk(  rt        d«      ‚|dk(  r-t        j                  t        j                  |d   «      | _        y t        j                  |dt        j                  iŽ| _        y )Nr   z)at least one ORDER BY element is requiredr   Ú_literal_as_text_role)r   Úexpectr   ÚExpressionElementRoler&   r'   ÚlenÚ	TypeErrorr(   r   Ú
ClauseList)r.   r&   r(   Ú_lobs       r/   r0   zaggregate_order_by.__init__h   s    € ô
 &/×%5Ñ%5Ü×'Ñ'¨ó&
ˆŒð —K‘K×$Ñ$ˆŒ	ä�8‹}ˆÙØ�1Š9ÜÐGÓHÐHØ�QŠYÜ%×,Ñ,Ü×+Ñ+¨X°a©[óˆD�Mô %×/Ñ/ØðÜ16×1LÑ1LñˆD�Mr2   Nc                ó   — | S r+   r,   )r.   Úagainsts     r/   Ú
self_groupzaggregate_order_by.self_group   s	   € ð ˆr2   c                ó2   — | j                   | j                  fS r+   ©r&   r(   )r.   Úkwargss     r/   Úget_childrenzaggregate_order_by.get_children„   s   € Ø�{‰{˜DŸM™MÐ)Ð)r2   c                ód   —  || j                   fi |¤Ž| _          || j                  fi |¤Ž| _        y r+   r@   )r.   ÚcloneÚkws      r/   Ú_copy_internalsz"aggregate_order_by._copy_internals‡   s.   € ñ ˜DŸK™KÑ.¨2Ñ.ˆŒÙ˜dŸm™mÑ2¨rÑ2ˆ�r2   c                ó\   — | j                   j                  | j                  j                  z   S r+   )r&   Ú_from_objectsr(   )r.   s    r/   rH   z aggregate_order_by._from_objects�   s!   € à�{‰{×(Ñ(¨4¯=©=×+FÑ+FÑFÐFr2   )r&   zColumnElement[_T]r(   ú_ColumnExpressionArgument[Any])r&   z_ColumnExpressionArgument[_T]r(   rI   r+   )r=   zOptional[OperatorType]Úreturnr   )rA   r   rJ   zIterable[ClauseElement])rD   r   rE   r   rJ   ÚNone)rJ   zList[FromClause])Ú__name__Ú
__module__Ú__qualname__Ú__doc__Ú__visit_name__Ústringify_dialectr   Údp_clauseelementÚdp_typer)   Ú__annotations__r   r0   r>   rB   r   Ú_clonerF   ÚpropertyrH   r,   r2   r/   r$   r$   ,   s  … ñ"ðH *€Nà$Ðà	Ð$×5Ñ5Ð6Ø	Ð"×*Ñ*Ð+Ø	Ð&×7Ñ7Ð8ð3ÐÐ/ó ð ðà!ðð 2òó ðð ðà-ðð 2òó ððà-ðð 2óð0 15ðØ-ðà	óó
*ð +3¯/©/ð3Ø'ð3ØADð3à	ó3ð òGó ñGr2   r$   c                  ó|   ‡ — e Zd ZdZdZdZdZdZ ej                  ddd«      	 	 	 	 	 	 dd	„«       Z
ˆ fd
„Zdd„Zˆ xZS )ÚExcludeConstraintzäA table-level EXCLUDE constraint.

    Defines an EXCLUDE constraint as described in the `PostgreSQL
    documentation`__.

    __ https://www.postgresql.org/docs/current/static/sql-createtable.html#SQL-CREATETABLE-EXCLUDE

    Úexclude_constraintNFr%   Úwherez:class:`.ExcludeConstraint`z$:paramref:`.ExcludeConstraint.where`c                ó¨  — g }g }i | _         t        |Ž \  }}t        t        j                  t        j
                  |«      |«      D ]R  \  \  }}}	}
}|
�|j                  |
«       |�|j                  n|	}|�|| j                   |<   |j                  |||f«       ŒT || _        t        j                  | g|¢­|j                  d«      |j                  d«      |j                  d«      dœŽ |j                  dd«      | _        |j                  d«      }|�)t        j                  t        j                  |«      | _        |j                  d	i «      | _        y)
aß  
        Create an :class:`.ExcludeConstraint` object.

        E.g.::

            const = ExcludeConstraint(
                (Column("period"), "&&"),
                (Column("group"), "="),
                where=(Column("group") != "some group"),
                ops={"group": "my_operator_class"},
            )

        The constraint is normally embedded into the :class:`_schema.Table`
        construct
        directly, or added later using :meth:`.append_constraint`::

            some_table = Table(
                "some_table",
                metadata,
                Column("id", Integer, primary_key=True),
                Column("period", TSRANGE()),
                Column("group", String),
            )

            some_table.append_constraint(
                ExcludeConstraint(
                    (some_table.c.period, "&&"),
                    (some_table.c.group, "="),
                    where=some_table.c.group != "some group",
                    name="some_table_excl_const",
                    ops={"group": "my_operator_class"},
                )
            )

        The exclude constraint defined in this example requires the
        ``btree_gist`` extension, that can be created using the
        command ``CREATE EXTENSION btree_gist;``.

        :param \*elements:

          A sequence of two tuples of the form ``(column, operator)`` where
          "column" is either a :class:`_schema.Column` object, or a SQL
          expression element (e.g. ``func.int8range(table.from, table.to)``)
          or the name of a column as string, and "operator" is a string
          containing the operator to use (e.g. `"&&"` or `"="`).

          In order to specify a column name when a :class:`_schema.Column`
          object is not available, while ensuring
          that any necessary quoting rules take effect, an ad-hoc
          :class:`_schema.Column` or :func:`_expression.column`
          object should be used.
          The ``column`` may also be a string SQL expression when
          passed as :func:`_expression.literal_column` or
          :func:`_expression.text`

        :param name:
          Optional, the in-database name of this constraint.

        :param deferrable:
          Optional bool.  If set, emit DEFERRABLE or NOT DEFERRABLE when
          issuing DDL for this constraint.

        :param initially:
          Optional string.  If set, emit INITIALLY <value> when issuing DDL
          for this constraint.

        :param using:
          Optional string.  If set, emit USING <index_method> when issuing DDL
          for this constraint. Defaults to 'gist'.

        :param where:
          Optional SQL expression construct or literal SQL string.
          If set, emit WHERE <predicate> when issuing DDL
          for this constraint.

        :param ops:
          Optional dictionary.  Used to define operator classes for the
          elements; works the same way as that of the
          :ref:`postgresql_ops <postgresql_operator_classes>`
          parameter specified to the :class:`_schema.Index` construct.

          .. versionadded:: 1.3.21

          .. seealso::

            :ref:`postgresql_operator_classes` - general description of how
            PostgreSQL operator classes are specified.

        NÚnameÚ
deferrableÚ	initially)r\   r]   r^   ÚusingÚgistrZ   Úops)Ú	operatorsÚzipr   Ú expect_col_expression_collectionr   ÚDDLConstraintColumnRoleÚappendr\   Ú_render_exprsr   r0   Úgetr_   r6   ÚStatementOptionRolerZ   ra   )r.   r   rE   ÚcolumnsÚrender_exprsÚexpressionsrb   ÚexprÚcolumnÚstrnameÚadd_elementÚoperatorr\   rZ   s                 r/   r0   zExcludeConstraint.__init__£   sQ  € ðB ˆØˆØˆŒä!$ h Ñˆ�Yä>AÜ×6Ñ6Ü×-Ñ-¨{óð ó	?
ò 	8Ñ:Ñ0ˆT�6˜7 K°(ð Ð&Ø—‘˜{Ô+à"(Ð"4�6—;’;¸'ˆDàÐà'/�—‘˜tÑ$à×Ñ  t¨XÐ 6Õ7ð	8ð" *ˆÔä"×+Ñ+Øð	
àñ	
ð —‘˜“Ø—v‘v˜lÓ+Ø—f‘f˜[Ó)ó	
ð —V‘V˜G VÓ,ˆŒ
Ø—‘�w“ˆØÐÜ"×)Ñ)¬%×*CÑ*CÀUÓKˆDŒJà—6‘6˜% Ó$ˆ�r2   c           	     óÄ   •— t         ‰| �  |«       | j                  D ���cg c]*  \  }}}t        |t        «      s|n|j
                  |   ||f‘Œ, c}}}| _        y c c}}}w r+   )ÚsuperÚ_set_parentrg   Ú
isinstanceÚstrÚc)r.   ÚtablerE   rm   r\   rq   Ú	__class__s         €r/   rt   zExcludeConstraint._set_parent+  sc   ø€ Ü‰Ñ˜EÔ"ð *.×);Ñ);÷
ð 
ñ %��d˜Hô	 ' t¬SÔ1‘°u·w±w¸t±}ØØòô
ˆÕùô 
s   ¡/Ac           
     ór  — | j                   D ���cg c])  \  }}}t        j                  || j                  |«      |f‘Œ+ }}}} | j                  || j
                  | j                  | j                  | j                  | j                  dœŽ}|j                  j                  | j                  «       |S c c}}}w )N)r\   r]   r^   rZ   r_   )rg   r   Ú_copy_expressionÚparentry   r\   r]   r^   rZ   r_   ÚdispatchÚ_update)r.   Útarget_tablerE   rm   Ú_rq   r   rw   s           r/   Ú_copyzExcludeConstraint._copy7  s©   € ð &*×%7Ñ%7÷
ð 
ñ
 "��a˜ô ×'Ñ'¨¨d¯k©k¸<ÓHØòð
ˆò 
ð ˆD�N‰NØØ—‘Ø—‘Ø—n‘nØ—*‘*Ø—*‘*ò
ˆð 	
�
‰
×Ñ˜4Ÿ=™=Ô)Øˆùô!
s   ‘.B2)r   zTuple[_DDLColumnArgument, str]rE   r   rJ   rK   r+   )rL   rM   rN   rO   rP   rZ   Úinherit_cacheÚcreate_drop_stringify_dialectr   Ú_document_text_coercionr0   rt   r�   Ú__classcell__©ry   s   @r/   rX   rX   ’   so   ø„ ñð *€Nà€EØ€Mà$0Ð!à%€X×%Ñ%ØØ%Ø.óð
A%Ø7ðA%Ø?BðA%à	òA%óð
A%ôF

÷r2   rX   c                 óR   — t         |d<   t        j                  j                  | i |¤ŽS )zÏPostgreSQL-specific form of :class:`_functions.array_agg`, ensures
    return type is :class:`_postgresql.ARRAY` and not
    the plain :class:`_types.ARRAY`, unless an explicit ``type_``
    is passed.

    Ú_default_array_type)r   r   ÚfuncÚ	array_agg)ÚargrE   s     r/   rŠ   rŠ   K  s)   € ô !&€BÐÑÜ�>‰>×#Ñ# SÐ/¨BÑ/Ð/r2   c                  ó"   ‡ — e Zd ZdZˆ fd„Zˆ xZS )Ú_regconfig_fnTc                ó�  •— t        |«      }t        |«      dkD  rTt        j                  t        j
                  |j                  d«      t        | dd «      | t        j                  ¬«      }|g}ng }|D �cg c]4  }t        j                  t        j
                  |t        | dd «      | ¬«      ‘Œ6 }}t        ‰| �,  ||z   i |¤Ž y c c}w )Nr   r   r\   )r\   Úapply_propagate_attrsÚtype_©r\   r�   )Úlistr8   r   r6   r   r7   ÚpopÚgetattrr   Ú	REGCONFIGrs   r0   )r.   ÚargsrA   Úinitial_argrw   Ú
addtl_argsry   s         €r/   r0   z_regconfig_fn.__init__Y  sÄ   ø€ Ü�D‹zˆÜˆt‹9�qŠ=Ü#×*Ñ*Ü×+Ñ+Ø—‘˜“Ü˜T 6¨4Ó0Ø&*Ü—o‘oôˆKð '˜-‰KàˆKð ö
ð ô ×ÑÜ×+Ñ+ØÜ˜T 6¨4Ó0Ø&*ö	ð
ˆ
ð 
ô 	‰Ñ˜;¨Ñ3Ð?¸Ó?ùò
s   Á59C)rL   rM   rN   r‚   r0   r…   r†   s   @r/   r�   r�   V  s   ø„ Ø€M÷@ð @r2   r�   c                  ó,   — e Zd ZdZdZej                  Zy)Úto_tsvectoraÇ  The PostgreSQL ``to_tsvector`` SQL function.

    This function applies automatic casting of the REGCONFIG argument
    to use the :class:`_postgresql.REGCONFIG` datatype automatically,
    and applies a return type of :class:`_postgresql.TSVECTOR`.

    Assuming the PostgreSQL dialect has been imported, either by invoking
    ``from sqlalchemy.dialects import postgresql``, or by creating a PostgreSQL
    engine using ``create_engine("postgresql...")``,
    :class:`_postgresql.to_tsvector` will be used automatically when invoking
    ``sqlalchemy.func.to_tsvector()``, ensuring the correct argument and return
    type handlers are used at compile and execution time.

    .. versionadded:: 2.0.0rc1

    TN)rL   rM   rN   rO   r‚   r   ÚTSVECTORr'   r,   r2   r/   rš   rš   s  s   „ ñð" €MØ�>‰>�Dr2   rš   c                  ó,   — e Zd ZdZdZej                  Zy)Ú
to_tsqueryaÃ  The PostgreSQL ``to_tsquery`` SQL function.

    This function applies automatic casting of the REGCONFIG argument
    to use the :class:`_postgresql.REGCONFIG` datatype automatically,
    and applies a return type of :class:`_postgresql.TSQUERY`.

    Assuming the PostgreSQL dialect has been imported, either by invoking
    ``from sqlalchemy.dialects import postgresql``, or by creating a PostgreSQL
    engine using ``create_engine("postgresql...")``,
    :class:`_postgresql.to_tsquery` will be used automatically when invoking
    ``sqlalchemy.func.to_tsquery()``, ensuring the correct argument and return
    type handlers are used at compile and execution time.

    .. versionadded:: 2.0.0rc1

    TN©rL   rM   rN   rO   r‚   r   ÚTSQUERYr'   r,   r2   r/   r�   r�   ‰  ó   „ ñð" €MØ�=‰=�Dr2   r�   c                  ó,   — e Zd ZdZdZej                  Zy)Úplainto_tsqueryaÒ  The PostgreSQL ``plainto_tsquery`` SQL function.

    This function applies automatic casting of the REGCONFIG argument
    to use the :class:`_postgresql.REGCONFIG` datatype automatically,
    and applies a return type of :class:`_postgresql.TSQUERY`.

    Assuming the PostgreSQL dialect has been imported, either by invoking
    ``from sqlalchemy.dialects import postgresql``, or by creating a PostgreSQL
    engine using ``create_engine("postgresql...")``,
    :class:`_postgresql.plainto_tsquery` will be used automatically when
    invoking ``sqlalchemy.func.plainto_tsquery()``, ensuring the correct
    argument and return type handlers are used at compile and execution time.

    .. versionadded:: 2.0.0rc1

    TNrž   r,   r2   r/   r¢   r¢   Ÿ  r    r2   r¢   c                  ó,   — e Zd ZdZdZej                  Zy)Úphraseto_tsqueryaÕ  The PostgreSQL ``phraseto_tsquery`` SQL function.

    This function applies automatic casting of the REGCONFIG argument
    to use the :class:`_postgresql.REGCONFIG` datatype automatically,
    and applies a return type of :class:`_postgresql.TSQUERY`.

    Assuming the PostgreSQL dialect has been imported, either by invoking
    ``from sqlalchemy.dialects import postgresql``, or by creating a PostgreSQL
    engine using ``create_engine("postgresql...")``,
    :class:`_postgresql.phraseto_tsquery` will be used automatically when
    invoking ``sqlalchemy.func.phraseto_tsquery()``, ensuring the correct
    argument and return type handlers are used at compile and execution time.

    .. versionadded:: 2.0.0rc1

    TNrž   r,   r2   r/   r¤   r¤   µ  r    r2   r¤   c                  ó,   — e Zd ZdZdZej                  Zy)Úwebsearch_to_tsqueryaá  The PostgreSQL ``websearch_to_tsquery`` SQL function.

    This function applies automatic casting of the REGCONFIG argument
    to use the :class:`_postgresql.REGCONFIG` datatype automatically,
    and applies a return type of :class:`_postgresql.TSQUERY`.

    Assuming the PostgreSQL dialect has been imported, either by invoking
    ``from sqlalchemy.dialects import postgresql``, or by creating a PostgreSQL
    engine using ``create_engine("postgresql...")``,
    :class:`_postgresql.websearch_to_tsquery` will be used automatically when
    invoking ``sqlalchemy.func.websearch_to_tsquery()``, ensuring the correct
    argument and return type handlers are used at compile and execution time.

    .. versionadded:: 2.0.0rc1

    TNrž   r,   r2   r/   r¦   r¦   Ë  r    r2   r¦   c                  ó*   ‡ — e Zd ZdZdZeZˆ fd„Zˆ xZS )Úts_headlinea¾  The PostgreSQL ``ts_headline`` SQL function.

    This function applies automatic casting of the REGCONFIG argument
    to use the :class:`_postgresql.REGCONFIG` datatype automatically,
    and applies a return type of :class:`_types.TEXT`.

    Assuming the PostgreSQL dialect has been imported, either by invoking
    ``from sqlalchemy.dialects import postgresql``, or by creating a PostgreSQL
    engine using ``create_engine("postgresql...")``,
    :class:`_postgresql.ts_headline` will be used automatically when invoking
    ``sqlalchemy.func.ts_headline()``, ensuring the correct argument and return
    type handlers are used at compile and execution time.

    .. versionadded:: 2.0.0rc1

    Tc                ó0  •— t        |«      }t        |«      dk  rd}nKt        |d   t        j                  «      r,|d   j
                  j                  t        j                  u rd}nd}|rTt        j                  t        j                  |j                  d«      | t        | dd «      t        j                  ¬«      }|g}ng }|D �cg c]4  }t        j                  t        j                  |t        | dd «      | ¬«      ‘Œ6 }}t!        ‰| �D  ||z   i |¤Ž y c c}w )	Né   Fr   Tr   r\   )r�   r\   r�   r‘   )r’   r8   ru   r   r   r'   Ú_type_affinityr   rŸ   r   r6   r   r7   r“   r”   r•   rs   r0   )r.   r–   rA   Úhas_regconfigr—   rw   r˜   ry   s          €r/   r0   zts_headline.__init__ö  s  ø€ Ü�D‹zˆô ˆt‹9�qŠ=à!‰Mä�t˜A‘w¤× 6Ñ 6Ô7Ø�Q‘—‘×+Ñ+¬u¯}©}Ñ<ð "‰Mà ˆMáÜ#×*Ñ*Ü×+Ñ+Ø—‘˜“Ø&*Ü˜T 6¨4Ó0Ü—o‘oôˆKð '˜-‰KàˆKð ö
ð ô ×ÑÜ×+Ñ+ØÜ˜T 6¨4Ó0Ø&*ö	ð
ˆ
ð 
ô 	‰Ñ˜;¨Ñ3Ð?¸Ó?ùò
s   Ã9D)	rL   rM   rN   rO   r‚   r   r'   r0   r…   r†   s   @r/   r¨   r¨   á  s    ø„ ñð" €MØ€D÷&@ð &@r2   r¨   N)4Ú
__future__r   Útypingr   r   r   r   r   r	   r
   r   Ú r   Úarrayr   Úsqlr   r   r   r   r   r   Ú
sql.schemar   Úsql.sqltypesr   Úsql.visitorsr   Úsql._typingr   r   Úsql.elementsr   r   Úsql.operatorsr   Úsql.selectabler   r   r    r!   r$   rX   rŠ   ÚGenericFunctionr�   rš   r�   r¢   r¤   r¦   r¨   r,   r2   r/   ú<module>rº      sþ   ðõ #å Ý Ý Ý Ý Ý Ý  Ý å Ý Ý Ý Ý Ý Ý Ý Ý 4Ý  Ý -áÝ8Ý1Ý-Ý-Ý-Ý,Ý2Ý6áˆT˜Ô€ôcG˜×1Ñ1°"Ñ5ô cGôLvÐ2ô vòr0ô@�I×-Ñ-¨bÑ1ô @ô:�-ô ô,�ô ô,�mô ô,�}ô ô,˜=ô ô,;@�-õ ;@r2   