iddZddlmZddlZddlZddlZddlmZddlmZddlm Z ddlm Z dd lm Z dd lm Z dd lm Z dd lmZdd lmZddlmZddlmZddlmZddlmZddlmZddlmZddlmZddlmZddlmZddlm Z  dd l!mZ"n #e#$rdZ"YnwxYwej$dZ%Gddej&Z'Gdde Z(GddeZ)Gd d!eZ*Gd"d#eZ+Gd$d%eZ,ej-Z.Gd&d'e Z/Gd(d)e Z0Gd*d+eZ1ej2d,Z3ej2d-Z4ej2d.Z5Gd/d0e Z6e6Z7dS)1a I .. dialect:: postgresql+psycopg2 :name: psycopg2 :dbapi: psycopg2 :connectstring: postgresql+psycopg2://user:password@host:port/dbname[?key=value&key=value...] :url: http://pypi.python.org/pypi/psycopg2/ psycopg2 Connect Arguments ----------------------------------- psycopg2-specific keyword arguments which are accepted by :func:`_sa.create_engine()` are: * ``server_side_cursors``: Enable the usage of "server side cursors" for SQL statements which support this feature. What this essentially means from a psycopg2 point of view is that the cursor is created using a name, e.g. ``connection.cursor('some name')``, which has the effect that result rows are not immediately pre-fetched and buffered after statement execution, but are instead left on the server and only retrieved as needed. SQLAlchemy's :class:`~sqlalchemy.engine.ResultProxy` uses special row-buffering behavior when this feature is enabled, such that groups of 100 rows at a time are fetched over the wire to reduce conversational overhead. Note that the :paramref:`.Connection.execution_options.stream_results` execution option is a more targeted way of enabling this mode on a per-execution basis. * ``use_native_unicode``: Enable the usage of Psycopg2 "native unicode" mode per connection. True by default. .. seealso:: :ref:`psycopg2_disable_native_unicode` * ``isolation_level``: This option, available for all PostgreSQL dialects, includes the ``AUTOCOMMIT`` isolation level when using the psycopg2 dialect. .. seealso:: :ref:`psycopg2_isolation_level` * ``client_encoding``: sets the client encoding in a libpq-agnostic way, using psycopg2's ``set_client_encoding()`` method. .. seealso:: :ref:`psycopg2_unicode` * ``executemany_mode``, ``executemany_batch_page_size``, ``executemany_values_page_size``: Allows use of psycopg2 extensions for optimizing "executemany"-stye queries. See the referenced section below for details. .. seealso:: :ref:`psycopg2_executemany_mode` * ``use_batch_mode``: this is the previous setting used to affect "executemany" mode and is now deprecated. Unix Domain Connections ------------------------ psycopg2 supports connecting via Unix domain connections. When the ``host`` portion of the URL is omitted, SQLAlchemy passes ``None`` to psycopg2, which specifies Unix-domain communication rather than TCP/IP communication:: create_engine("postgresql+psycopg2://user:password@/dbname") By default, the socket file used is to connect to a Unix-domain socket in ``/tmp``, or whatever socket directory was specified when PostgreSQL was built. This value can be overridden by passing a pathname to psycopg2, using ``host`` as an additional keyword argument:: create_engine("postgresql+psycopg2://user:password@/dbname?host=/var/lib/postgresql") .. seealso:: `PQconnectdbParams \ `_ .. _psycopg2_multi_host: Specfiying multiple fallback hosts ------------------------------------ psycopg2 supports multiple connection points in the connection string. When the ``host`` parameter is used multiple times in the query section of the URL, SQLAlchemy will create a single string of the host and port information provided to make the connections:: create_engine( "postgresql+psycopg2://user:password@/dbname?host=HostA:port1&host=HostB&host=HostC" ) A connection to each host is then attempted until either a connection is successful or all connections are unsuccessful in which case an error is raised. .. versionadded:: 1.3.20 Support for multiple hosts in PostgreSQL connection string. .. seealso:: `PQConnString \ `_ Empty DSN Connections / Environment Variable Connections --------------------------------------------------------- The psycopg2 DBAPI can connect to PostgreSQL by passing an empty DSN to the libpq client library, which by default indicates to connect to a localhost PostgreSQL database that is open for "trust" connections. This behavior can be further tailored using a particular set of environment variables which are prefixed with ``PG_...``, which are consumed by ``libpq`` to take the place of any or all elements of the connection string. For this form, the URL can be passed without any elements other than the initial scheme:: engine = create_engine('postgresql+psycopg2://') In the above form, a blank "dsn" string is passed to the ``psycopg2.connect()`` function which in turn represents an empty DSN passed to libpq. .. versionadded:: 1.3.2 support for parameter-less connections with psycopg2. .. seealso:: `Environment Variables\ `_ - PostgreSQL documentation on how to use ``PG_...`` environment variables for connections. .. _psycopg2_execution_options: Per-Statement/Connection Execution Options ------------------------------------------- The following DBAPI-specific options are respected when used with :meth:`_engine.Connection.execution_options`, :meth:`.Executable.execution_options`, :meth:`_query.Query.execution_options`, in addition to those not specific to DBAPIs: * ``isolation_level`` - Set the transaction isolation level for the lifespan of a :class:`_engine.Connection` (can only be set on a connection, not a statement or query). See :ref:`psycopg2_isolation_level`. * ``stream_results`` - Enable or disable usage of psycopg2 server side cursors - this feature makes use of "named" cursors in combination with special result handling methods so that result rows are not fully buffered. If ``None`` or not set, the ``server_side_cursors`` option of the :class:`_engine.Engine` is used. * ``max_row_buffer`` - when using ``stream_results``, an integer value that specifies the maximum number of rows to buffer at a time. This is interpreted by the :class:`.BufferedRowResultProxy`, and if omitted the buffer will grow to ultimately store 1000 rows at a time. .. versionadded:: 1.0.6 .. _psycopg2_batch_mode: .. _psycopg2_executemany_mode: Psycopg2 Fast Execution Helpers ------------------------------- Modern versions of psycopg2 include a feature known as `Fast Execution Helpers \ `_, which have been shown in benchmarking to improve psycopg2's executemany() performance, primarily with INSERT statements, by multiple orders of magnitude. SQLAlchemy allows this extension to be used for all ``executemany()`` style calls invoked by an :class:`_engine.Engine` when used with :ref:`multiple parameter sets `, which includes the use of this feature both by the Core as well as by the ORM for inserts of objects with non-autogenerated primary key values, by adding the ``executemany_mode`` flag to :func:`_sa.create_engine`:: engine = create_engine( "postgresql+psycopg2://scott:tiger@host/dbname", executemany_mode='batch') .. versionchanged:: 1.3.7 - the ``use_batch_mode`` flag has been superseded by a new parameter ``executemany_mode`` which provides support both for psycopg2's ``execute_batch`` helper as well as the ``execute_values`` helper. Possible options for ``executemany_mode`` include: * ``None`` - By default, psycopg2's extensions are not used, and the usual ``cursor.executemany()`` method is used when invoking batches of statements. * ``'batch'`` - Uses ``psycopg2.extras.execute_batch`` so that multiple copies of a SQL query, each one corresponding to a parameter set passed to ``executemany()``, are joined into a single SQL string separated by a semicolon. This is the same behavior as was provided by the ``use_batch_mode=True`` flag. * ``'values'``- For Core :func:`_expression.insert` constructs only (including those emitted by the ORM automatically), the ``psycopg2.extras.execute_values`` extension is used so that multiple parameter sets are grouped into a single INSERT statement and joined together with multiple VALUES expressions. This method requires that the string text of the VALUES clause inside the INSERT statement is manipulated, so is only supported with a compiled :func:`_expression.insert` construct where the format is predictable. For all other constructs, including plain textual INSERT statements not rendered by the SQLAlchemy expression language compiler, the ``psycopg2.extras.execute_batch`` method is used. It is therefore important to note that **"values" mode implies that "batch" mode is also used for all statements for which "values" mode does not apply**. For both strategies, the ``executemany_batch_page_size`` and ``executemany_values_page_size`` arguments control how many parameter sets should be represented in each execution. Because "values" mode implies a fallback down to "batch" mode for non-INSERT statements, there are two independent page size arguments. For each, the default value of ``None`` means to use psycopg2's defaults, which at the time of this writing are quite low at 100. For the ``execute_values`` method, a number as high as 10000 may prove to be performant, whereas for ``execute_batch``, as the number represents full statements repeated, a number closer to the default of 100 is likely more appropriate:: engine = create_engine( "postgresql+psycopg2://scott:tiger@host/dbname", executemany_mode='values', executemany_values_page_size=10000, executemany_batch_page_size=500) .. seealso:: :ref:`execute_multiple` - General information on using the :class:`_engine.Connection` object to execute statements in such a way as to make use of the DBAPI ``.executemany()`` method. .. versionchanged:: 1.3.7 - Added support for ``psycopg2.extras.execute_values``. The ``use_batch_mode`` flag is superseded by the ``executemany_mode`` flag. .. _psycopg2_unicode: Unicode with Psycopg2 ---------------------- By default, the psycopg2 driver uses the ``psycopg2.extensions.UNICODE`` extension, such that the DBAPI receives and returns all strings as Python Unicode objects directly - SQLAlchemy passes these values through without change. Psycopg2 here will encode/decode string values based on the current "client encoding" setting; by default this is the value in the ``postgresql.conf`` file, which often defaults to ``SQL_ASCII``. Typically, this can be changed to ``utf8``, as a more useful default:: # postgresql.conf file # client_encoding = sql_ascii # actually, defaults to database # encoding client_encoding = utf8 A second way to affect the client encoding is to set it within Psycopg2 locally. SQLAlchemy will call psycopg2's :meth:`psycopg2:connection.set_client_encoding` method on all new connections based on the value passed to :func:`_sa.create_engine` using the ``client_encoding`` parameter:: # set_client_encoding() setting; # works for *all* PostgreSQL versions engine = create_engine("postgresql://user:pass@host/dbname", client_encoding='utf8') This overrides the encoding specified in the PostgreSQL client configuration. When using the parameter in this way, the psycopg2 driver emits ``SET client_encoding TO 'utf8'`` on the connection explicitly, and works in all PostgreSQL versions. Note that the ``client_encoding`` setting as passed to :func:`_sa.create_engine` is **not the same** as the more recently added ``client_encoding`` parameter now supported by libpq directly. This is enabled when ``client_encoding`` is passed directly to ``psycopg2.connect()``, and from SQLAlchemy is passed using the :paramref:`_sa.create_engine.connect_args` parameter:: engine = create_engine( "postgresql://user:pass@host/dbname", connect_args={'client_encoding': 'utf8'}) # using the query string is equivalent engine = create_engine("postgresql://user:pass@host/dbname?client_encoding=utf8") The above parameter was only added to libpq as of version 9.1 of PostgreSQL, so using the previous method is better for cross-version support. .. _psycopg2_disable_native_unicode: Disabling Native Unicode ^^^^^^^^^^^^^^^^^^^^^^^^ SQLAlchemy can also be instructed to skip the usage of the psycopg2 ``UNICODE`` extension and to instead utilize its own unicode encode/decode services, which are normally reserved only for those DBAPIs that don't fully support unicode directly. Passing ``use_native_unicode=False`` to :func:`_sa.create_engine` will disable usage of ``psycopg2.extensions. UNICODE``. SQLAlchemy will instead encode data itself into Python bytestrings on the way in and coerce from bytes on the way back, using the value of the :func:`_sa.create_engine` ``encoding`` parameter, which defaults to ``utf-8``. SQLAlchemy's own unicode encode/decode functionality is steadily becoming obsolete as most DBAPIs now support unicode fully. Bound Parameter Styles ---------------------- The default parameter style for the psycopg2 dialect is "pyformat", where SQL is rendered using ``%(paramname)s`` style. This format has the limitation that it does not accommodate the unusual case of parameter names that actually contain percent or parenthesis symbols; as SQLAlchemy in many cases generates bound parameter names based on the name of a column, the presence of these characters in a column name can lead to problems. There are two solutions to the issue of a :class:`_schema.Column` that contains one of these characters in its name. One is to specify the :paramref:`.schema.Column.key` for columns that have such names:: measurement = Table('measurement', metadata, Column('Size (meters)', Integer, key='size_meters') ) Above, an INSERT statement such as ``measurement.insert()`` will use ``size_meters`` as the parameter name, and a SQL expression such as ``measurement.c.size_meters > 10`` will derive the bound parameter name from the ``size_meters`` key as well. .. versionchanged:: 1.0.0 - SQL expressions will use :attr:`_schema.Column.key` as the source of naming when anonymous bound parameters are created in SQL expressions; previously, this behavior only applied to :meth:`_schema.Table.insert` and :meth:`_schema.Table.update` parameter names. The other solution is to use a positional format; psycopg2 allows use of the "format" paramstyle, which can be passed to :paramref:`_sa.create_engine.paramstyle`:: engine = create_engine( 'postgresql://scott:tiger@localhost:5432/test', paramstyle='format') With the above engine, instead of a statement like:: INSERT INTO measurement ("Size (meters)") VALUES (%(Size (meters))s) {'Size (meters)': 1} we instead see:: INSERT INTO measurement ("Size (meters)") VALUES (%s) (1, ) Where above, the dictionary style is converted into a tuple with positional style. Transactions ------------ The psycopg2 dialect fully supports SAVEPOINT and two-phase commit operations. .. _psycopg2_isolation_level: Psycopg2 Transaction Isolation Level ------------------------------------- As discussed in :ref:`postgresql_isolation_level`, all PostgreSQL dialects support setting of transaction isolation level both via the ``isolation_level`` parameter passed to :func:`_sa.create_engine` , as well as the ``isolation_level`` argument used by :meth:`_engine.Connection.execution_options`. When using the psycopg2 dialect , these options make use of psycopg2's ``set_isolation_level()`` connection method, rather than emitting a PostgreSQL directive; this is because psycopg2's API-level setting is always emitted at the start of each transaction in any case. The psycopg2 dialect supports these constants for isolation level: * ``READ COMMITTED`` * ``READ UNCOMMITTED`` * ``REPEATABLE READ`` * ``SERIALIZABLE`` * ``AUTOCOMMIT`` .. seealso:: :ref:`postgresql_isolation_level` :ref:`pg8000_isolation_level` NOTICE logging --------------- The psycopg2 dialect will log PostgreSQL NOTICE messages via the ``sqlalchemy.dialects.postgresql`` logger. When this logger is set to the ``logging.INFO`` level, notice messages will be logged:: import logging logging.getLogger('sqlalchemy.dialects.postgresql').setLevel(logging.INFO) Above, it is assumed that logging is configured externally. If this is not the case, configuration such as ``logging.basicConfig()`` must be utilized:: import logging logging.basicConfig() # log messages to stdout logging.getLogger('sqlalchemy.dialects.postgresql').setLevel(logging.INFO) .. seealso:: `Logging HOWTO `_ - on the python.org website .. _psycopg2_hstore: HSTORE type ------------ The ``psycopg2`` DBAPI includes an extension to natively handle marshalling of the HSTORE type. The SQLAlchemy psycopg2 dialect will enable this extension by default when psycopg2 version 2.4 or greater is used, and it is detected that the target database has the HSTORE type set up for use. In other words, when the dialect makes the first connection, a sequence like the following is performed: 1. Request the available HSTORE oids using ``psycopg2.extras.HstoreAdapter.get_oids()``. If this function returns a list of HSTORE identifiers, we then determine that the ``HSTORE`` extension is present. This function is **skipped** if the version of psycopg2 installed is less than version 2.4. 2. If the ``use_native_hstore`` flag is at its default of ``True``, and we've detected that ``HSTORE`` oids are available, the ``psycopg2.extensions.register_hstore()`` extension is invoked for all connections. The ``register_hstore()`` extension has the effect of **all Python dictionaries being accepted as parameters regardless of the type of target column in SQL**. The dictionaries are converted by this extension into a textual HSTORE expression. If this behavior is not desired, disable the use of the hstore extension by setting ``use_native_hstore`` to ``False`` as follows:: engine = create_engine("postgresql+psycopg2://scott:tiger@localhost/test", use_native_hstore=False) The ``HSTORE`` type is **still supported** when the ``psycopg2.extensions.register_hstore()`` extension is not used. It merely means that the coercion between Python dictionaries and the HSTORE string format, on both the parameter side and the result side, will take place within SQLAlchemy's own marshalling logic, and not that of ``psycopg2`` which may be more performant. )absolute_importN)_DECIMAL_TYPES) _FLOAT_TYPES) _INT_TYPES)ENUM) PGCompiler) PGDialect)PGExecutionContext)PGIdentifierPreparer)UUID)HSTORE)JSON)JSONB)exc) processors)types)util)result)elements)collections_abczsqlalchemy.dialects.postgresqlceZdZdZdZdS) _PGNumericcdSN)selfdialects \/opt/cloudlinux/venv/lib/python3.11/site-packages/sqlalchemy/dialects/postgresql/psycopg2.pybind_processorz_PGNumeric.bind_processorstc@|jrX|tvr$tjtj|jS|tvs |tvrdStj d|z|tvrdS|tvs |tvr tj Stj d|z)NzUnknown PG numeric type: %d) asdecimalrrto_decimal_processor_factorydecimalDecimal_effective_decimal_return_scalerrrInvalidRequestErrorto_float)rrcoltypes r result_processorz_PGNumeric.result_processors > ,&&!>OT%IN**g.C.Ct-1G;,&&tN**g.C.C!**-1G;r"N__name__ __module__ __qualname__r!r,rr"r rrs2r"rceZdZfdZxZS)_PGEnumctjr|jdurd|_tt|||S)NT force_nocheck)rpy2k_expect_unicodesuperr2r,rrr+ __class__s r r,z_PGEnum.result_processor sD 9 3-55$3D Wd##44WgFFFr"r.r/r0r, __classcell__r9s@r r2r2sA G G G G G G G G Gr"r2c(eZdZfdZfdZxZS) _PGHStorecf|jrdStt||Sr)_has_native_hstorer7r>r!)rrr9s r r!z_PGHStore.bind_processor0s2  % B4D))88AA Ar"ch|jrdStt|||Sr)r@r7r>r,r8s r r,z_PGHStore.result_processor6s4  % M4D))::7GLL Lr")r.r/r0r!r,r;r<s@r r>r>/s_BBBBB MMMMMMMMMr"r>ceZdZfdZxZS)_PGJSONch|jrdStt|||Sr)_has_native_jsonr7rCr,r8s r r,z_PGJSON.result_processor>s4  # K4$''88'JJ Jr"r:r<s@r rCrC=sAKKKKKKKKKr"rCceZdZfdZxZS)_PGJSONBch|jrdStt|||Sr)_has_native_jsonbr7rGr,r8s r r,z_PGJSONB.result_processorFs4  $ L44((99'7KK Kr"r:r<s@r rGrGEsALLLLLLLLLr"rGceZdZdZdZdS)_PGUUIDc0|js |jrd}|SdSdS)Nc(|t|}|Sr) _python_UUIDvalues r processz'_PGUUID.bind_processor..processQs$(//E r"as_uuiduse_native_uuid)rrrQs r r!z_PGUUID.bind_processorN@|  7     N    r"c0|js |jrd}|SdSdS)Nc(|t|}|Sr)strrOs r rQz)_PGUUID.result_processor..process[s$JJE r"rR)rrr+rQs r r,z_PGUUID.result_processorXrUr"Nr-rr"r rKrKMs2r"rKc eZdZdZdZdZdS)PGExecutionContext_psycopg2cdtt|dddttdd}|j|S)Nc__)hexid_server_side_id_dbapi_connectioncursor)ridents r create_server_side_cursorz5PGExecutionContext_psycopg2.create_server_side_cursorgs\!D]]122...O4E4E0F0Fqrr0J0JK%,,U333r"c||j|jrtj|Stj|Sr) _log_noticesrc_is_server_side_resultBufferedRowResultProxy ResultProxy)rs r get_result_proxyz,PGExecutionContext_psycopg2.get_result_proxymsE $+&&&   -1$77 7&t,, ,r"c|jjr$t|jjtjsdS|jjD].}t |/g|jjdd<dSr) connectionnotices isinstancerIterableloggerinforstrip)rrcnotices r rgz(PGExecutionContext_psycopg2._log_noticesus  (    %'?1 1   F'/ ) )F KK  ( ( ( (')!!!!$$$r"N)r.r/r0rerlrgrr"r rZrZfsA444 ---*****r"rZc eZdZdfd ZxZS)PGCompiler_psycopg2Fc tt|j|fd|i|}|s9|jjr-|dt j|jj|fd|i|z }|S)Nskip_bind_expressionz::)r7rwvisit_bindparamtype _is_arrayr TypeClause_compiler_dispatch)r bindparamrykwtextr9s r rzz#PGCompiler_psycopg2.visit_bindparams?u($//?   ,@ DF   $  (@  DF#IN33F/CGI D  r")F)r.r/r0rzr;r<s@r rwrws=          r"rwceZdZdS)PGIdentifierPreparer_psycopg2N)r.r/r0rr"r rrsDr"rexecutemany_defaultexecutemany_batchexecutemany_valuesceZdZdZejrdZdZdZdZ e Z e Z eZdZedddd d ZdZdZdZejd ejfgZejejejeee ej!e e"e#e$e%ej$e%e&e'e(e)iZej*d  ddZ+fdZ,e-dZ.e-dZ/e-dZ0ej1dZ2dZ3dZ4ddZ5ej6dZ7dZ8dZ9xZ:S)PGDialect_psycopg2psycopg2FTpyformat)rr)r])r]r)r]r )r]rr)r]r) native_json native_jsonbsane_multi_rowcount array_oidhstore_adapteruse_native_unicode)z1.3.7zJThe psycopg2 use_batch_mode flag is superseded by executemany_mode='batch')use_batch_modeNc tj|fi| ||_||_||_||_||_||_tj |tdgtdgtdgid|_| r t|_||_||_|jrkt%|jdrXt'jd|jj} | r9t-d| ddd D|_dSdSdSdS) Nbatchvaluesexecutemany_mode __version__z(\d+)\.(\d+)(?:\.(\d+))?c38K|]}|t|VdSr)int).0xs r z.PGDialect_psycopg2.__init__..s1..  CFF ..r"rr]r)r __init__server_side_cursorsruse_native_hstorerTsupports_unicode_bindsclient_encodingrsymbolparse_user_argumentEXECUTEMANY_DEFAULTEXECUTEMANY_BATCHEXECUTEMANY_VALUESrexecutemany_batch_page_sizeexecutemany_values_page_sizedbapihasattrrematchrtuplegrouppsycopg2_version) rrrrrrTrrrrkwargsms r rzPGDialect_psycopg2.__init__sK( 4**6***#6 "4!2.&8#.!% ? ? #dV!G9"XJ  ! !   6$5D !+F(,H) : '$*m<< 4dj6LMMA (-..$%GGAq!$4$4...))%%%      r"cftt|||jo||jdu|_|j|jdk|_ |j|jdk|_ |j|jdko |j tu|_ dS)Nrrr)r7r initializer _hstore_oidsrnr@rFEATURE_VERSION_MAPrErIrrsupports_sane_multi_rowcount)rrnr9s r rzPGDialect_psycopg2.initializes  $''22:>>>  " E!!*"788D   !T%=m%L L   !T%=n%M M   !'(=> ? =%)<< )))r"cddl}|S)Nr)r)clsrs r rzPGDialect_psycopg2.dbapisr"cddlm}|S)Nr) extensions)rr)rrs r _psycopg2_extensionsz'PGDialect_psycopg2._psycopg2_extensionss''''''r"cddlm}|S)Nr)extras)rr)rrs r _psycopg2_extrasz#PGDialect_psycopg2._psycopg2_extras"s###### r"cl|}|j|j|j|j|jdS)N) AUTOCOMMITzREAD COMMITTEDzREAD UNCOMMITTEDzREPEATABLE READ SERIALIZABLE)rISOLATION_LEVEL_AUTOCOMMITISOLATION_LEVEL_READ_COMMITTED ISOLATION_LEVEL_READ_UNCOMMITTEDISOLATION_LEVEL_REPEATABLE_READISOLATION_LEVEL_SERIALIZABLE)rrs r _isolation_lookupz$PGDialect_psycopg2._isolation_lookup(s@..00 $?(G * K)I&C    r"c @ |j|dd}ne#t$rX}tjt jd|d|jdd|j|Yd}~nd}~wwxYw| |dS)Nr^ zInvalid value 'z2' for isolation_level. Valid isolation levels for z are z, )replace_context) rreplaceKeyErrorrraise_r ArgumentErrornamejoinset_isolation_level)rrnlevelerrs r rz&PGDialect_psycopg2.set_isolation_level3s *5==c+B+BCEE    K!!uudiii43I)J)J)JL !$            &&u-----s!$ BABBc<gjfd}|jfd}|jr!jrfd}|jr!jrfd}|jr"jrfd}|jr"j rfd}|rfd}|SdS)Nc<|jdSr)set_client_encodingrconnrs r on_connectz1PGDialect_psycopg2.on_connect..on_connectIs (()=>>>>>r"c>|jdSr)risolation_levelrs r rz1PGDialect_psycopg2.on_connect..on_connectPs"((t/CDDDDDr"c4d|dSr) register_uuid)rrs r rz1PGDialect_psycopg2.on_connect..on_connectWs$$T400000r"ctj|j|dSr) register_typeUNICODE UNICODEARRAY)rrs r rz1PGDialect_psycopg2.on_connect..on_connect^s;(();TBBB(()@$GGGGGr"c|}|E|\}}d|i}tjrd|d<jjdkr||d<j|fi|dSdS)NoidTunicoder)rrr5rrregister_hstore)r hstore_oidsrrrrrs r rz1PGDialect_psycopg2.on_connect..on_connectfs"//55 *%0NCBy-(,9 -3K@AA+4;*F*466266666+*r"cjr|jjr|jdSdS)N)loads)rEregister_default_json_json_deserializerrIregister_default_jsonb)rrrs r rz1PGDialect_psycopg2.on_connect..on_connectxsy(00D$;1)11D$;2r"c(D] }||dSrr)rfnfnss r rz1PGDialect_psycopg2.on_connect..on_connects+BBtHHHHr") rrrappendrrrTrrr)rrrrrs` @@@r rzPGDialect_psycopg2.on_connectBs&&((..00    + ? ? ? ? ? JJz " " "   + E E E E E JJz " " " : #$. # 1 1 1 1 1 JJz " " " : #$1 # H H H H H JJz " " " : #$0 # 7 7 7 7 7 7 JJz " " " : #$1 #       JJz " " "        4r"c|jtur|||dS|jtur+|r)|jr"|jjrd|jjz}||vrd}nd}|rO||d}|jr d|ji}ni}| j |||fd|i|dS|j r d|j i}ni}| j |||fi|dS)Nz(%s)z%s page_sizetemplate) rr executemanyrisinsertcompiledinsert_single_values_exprrrrexecute_valuesr execute_batch)rrc statement parameterscontextrrs r do_executemanyz!PGDialect_psycopg2.do_executemanys  $7 7 7   y* 5 5 5 F  !%7 7 7 8  8 : 8 )CC "22%)"!%    "))*rrCrrGr rKdeprecated_paramsrr classmethodrrrmemoized_propertyrrrrmemoized_instancemethodrrrr;r<s@r rrsd F y,&+##' ##( 3,,H$% #7==  ,- t  j ' M7 I ' M7 8 '   HT "$(%)++++Z     ([ [ [      . . .JJJX----^ !"!   6%%%%%%%r"r)8__doc__ __future__rr&loggingrbaserrrrr r r r r hstorerjsonrrr rrrr,renginerrisqlrruuidrN ImportError getLoggerrrr-rr2r>rCrGrKcounterrarZrwrrrrrrrrr"r r?sWWp'&&&&& $$$$$$&&&&&&!!!!!!''''''######)))))))LLL  ; < <!: G G G G Gd G G G M M M M M M M MKKKKKdKKKLLLLLuLLLd,$,..*****"4***B*"     $8   "dk"788DK 344 T[!566eeeeeeeeP sBBB