|
Server : Apache System : Linux cvar2.toservers.com 3.10.0-962.3.2.lve1.5.73.el7.x86_64 #1 SMP Wed Aug 24 21:31:23 UTC 2022 x86_64 User : njnconst ( 1116) PHP Version : 8.4.18 Disable Function : NONE Directory : /opt/alt/python27/lib64/python2.7/site-packages/sqlalchemy/dialects/postgresql/ |
Upload File : |
�
��4]c @ s( 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 y d d l m
Z Wn e k
r} d Z n Xe j d � Z e j d
� Z d e j f d � � YZ e j d
d d �Z e j d d d �Z e j d d d �Z d e j f d � � YZ e e e j <e e d <d S( i ( t colspecs( t
ischema_namesi ( t types( t
expression( t operatorsi����( t UUIDc C s | j | | � S( s� A synonym for the :meth:`.ARRAY.Comparator.any` method.
This method is legacy and is here for backwards-compatibility.
.. seealso::
:func:`.expression.any_`
( t any( t othert arrexprt operator( ( sW /opt/alt/python27/lib64/python2.7/site-packages/sqlalchemy/dialects/postgresql/array.pyt Any s c C s | j | | � S( s� A synonym for the :meth:`.ARRAY.Comparator.all` method.
This method is legacy and is here for backwards-compatibility.
.. seealso::
:func:`.expression.all_`
( t all( R R R ( ( sW /opt/alt/python27/lib64/python2.7/site-packages/sqlalchemy/dialects/postgresql/array.pyt All# s t arrayc B s8 e Z d Z d Z d � Z e d d � Z d d � Z RS( s� A PostgreSQL ARRAY literal.
This is used to produce ARRAY literals in SQL expressions, e.g.::
from sqlalchemy.dialects.postgresql import array
from sqlalchemy.dialects import postgresql
from sqlalchemy import select, func
stmt = select([
array([1,2]) + array([3,4,5])
])
print(stmt.compile(dialect=postgresql.dialect()))
Produces the SQL::
SELECT ARRAY[%(param_1)s, %(param_2)s] ||
ARRAY[%(param_3)s, %(param_4)s, %(param_5)s]) AS anon_1
An instance of :class:`.array` will always have the datatype
:class:`.ARRAY`. The "inner" type of the array is inferred from
the values present, unless the ``type_`` keyword argument is passed::
array(['foo', 'bar'], type_=CHAR)
Multidimensional arrays are produced by nesting :class:`.array` constructs.
The dimensionality of the final :class:`.ARRAY` type is calculated by
recursively adding the dimensions of the inner :class:`.ARRAY` type::
stmt = select([
array([
array([1, 2]), array([3, 4]), array([column('q'), column('x')])
])
])
print(stmt.compile(dialect=postgresql.dialect()))
Produces::
SELECT ARRAY[ARRAY[%(param_1)s, %(param_2)s],
ARRAY[%(param_3)s, %(param_4)s], ARRAY[q, x]] AS anon_1
.. versionadded:: 1.3.6 added support for multidimensional array literals
.. seealso::
:class:`.postgresql.ARRAY`
R
c K s� t t | � j | | � t | j t � rk t | j j d | j j d k r\ | j j d n d �| _ n t | j � | _ d S( Nt
dimensionsi i ( t superR
t __init__t
isinstancet typet ARRAYt item_typeR t None( t selft clausest kw( ( sW /opt/alt/python27/lib64/python2.7/site-packages/sqlalchemy/dialects/postgresql/array.pyR f s "c C s� | s | t j k rU t | t � s* t � t j d | d | d | d | j d t �St
g | D]$ } | j | | d t d | �^ q_ � Sd S( Nt _compared_to_operatort type_t _compared_to_typet uniquet _assume_scalar( R t getitemR t intt AssertionErrorR t
BindParameterR R t TrueR
t _bind_param( R R t objR R t o( ( sW /opt/alt/python27/lib64/python2.7/site-packages/sqlalchemy/dialects/postgresql/array.pyR# r s c C s3 | t j t j t j f k r+ t j | � S| Sd S( N( R t any_opt all_opR R t Grouping( R t against( ( sW /opt/alt/python27/lib64/python2.7/site-packages/sqlalchemy/dialects/postgresql/array.pyt
self_group� s
N( t __name__t
__module__t __doc__t __visit_name__R t FalseR R# R* ( ( ( sW /opt/alt/python27/lib64/python2.7/site-packages/sqlalchemy/dialects/postgresql/array.pyR
1 s
1 s @>t
precedencei s <@s &&R c B s� e Z d Z d e j j f d � � YZ e Z e d
e d � Z e
d � � Z e
d � � Z d � Z
d � Z d � Z d � Z RS( s� PostgreSQL ARRAY type.
.. versionchanged:: 1.1 The :class:`.postgresql.ARRAY` type is now
a subclass of the core :class:`.types.ARRAY` type.
The :class:`.postgresql.ARRAY` type is constructed in the same way
as the core :class:`.types.ARRAY` type; a member type is required, and a
number of dimensions is recommended if the type is to be used for more
than one dimension::
from sqlalchemy.dialects import postgresql
mytable = Table("mytable", metadata,
Column("data", postgresql.ARRAY(Integer, dimensions=2))
)
The :class:`.postgresql.ARRAY` type provides all operations defined on the
core :class:`.types.ARRAY` type, including support for "dimensions",
indexed access, and simple matching such as
:meth:`.types.ARRAY.Comparator.any` and
:meth:`.types.ARRAY.Comparator.all`. :class:`.postgresql.ARRAY` class also
provides PostgreSQL-specific methods for containment operations, including
:meth:`.postgresql.ARRAY.Comparator.contains`
:meth:`.postgresql.ARRAY.Comparator.contained_by`, and
:meth:`.postgresql.ARRAY.Comparator.overlap`, e.g.::
mytable.c.data.contains([1, 2])
The :class:`.postgresql.ARRAY` type may not be supported on all
PostgreSQL DBAPIs; it is currently known to work on psycopg2 only.
Additionally, the :class:`.postgresql.ARRAY` type does not work directly in
conjunction with the :class:`.ENUM` type. For a workaround, see the
special type at :ref:`postgresql_array_of_enum`.
.. seealso::
:class:`.types.ARRAY` - base array type
:class:`.postgresql.array` - produces a literal array value.
t
Comparatorc B s) e Z d Z d � Z d � Z d � Z RS( s$ Define comparison operations for :class:`.ARRAY`.
Note that these operations are in addition to those provided
by the base :class:`.types.ARRAY.Comparator` class, including
:meth:`.types.ARRAY.Comparator.any` and
:meth:`.types.ARRAY.Comparator.all`.
c K s | j t | d t j �S( s Boolean expression. Test if elements are a superset of the
elements of the argument array expression.
t result_type( t operatet CONTAINSt sqltypest Boolean( R R t kwargs( ( sW /opt/alt/python27/lib64/python2.7/site-packages/sqlalchemy/dialects/postgresql/array.pyt contains� s c C s | j t | d t j �S( s� Boolean expression. Test if elements are a proper subset of the
elements of the argument array expression.
R2 ( R3 t CONTAINED_BYR5 R6 ( R R ( ( sW /opt/alt/python27/lib64/python2.7/site-packages/sqlalchemy/dialects/postgresql/array.pyt contained_by� s c C s | j t | d t j �S( su Boolean expression. Test if array has elements in common with
an argument array expression.
R2 ( R3 t OVERLAPR5 R6 ( R R ( ( sW /opt/alt/python27/lib64/python2.7/site-packages/sqlalchemy/dialects/postgresql/array.pyt overlap� s ( R+ R, R- R8 R: R<