]> git.ipfire.org Git - thirdparty/psycopg.git/shortlog
thirdparty/psycopg.git
2021-01-12  Daniele VarrazzoAdded dumpers row
2021-01-12  Daniele VarrazzoSet sub-dumper on array dumper on creation in Transformer
2021-01-12  Daniele VarrazzoAdded test to reproduce array bug found with random...
2021-01-12  Daniele VarrazzoAdd a reference on the ViewBuffer to the object owning...
2021-01-12  Daniele VarrazzoAdded randomisation of tests run
2021-01-12  Daniele VarrazzoFinish correctly a COPY TO operation reading copy.rows()
2021-01-12  Daniele VarrazzoAdded note to remember to document multiple statements...
2021-01-12  Daniele VarrazzoReporting pq import error improved
2021-01-12  Daniele VarrazzoFixed raising unicode encode errors in C
2021-01-12  Daniele VarrazzoAdded freelist to PGresult
2021-01-12  Daniele VarrazzoAdded repr and slots to Json wrappers
2021-01-12  Daniele VarrazzoAdded comment to remember what the array structure is
2021-01-12  Daniele VarrazzoDon't use Python enums in C PGconn.status
2021-01-12  Daniele VarrazzoMake cursor.query/params available after closing too
2021-01-10  Daniele VarrazzoAvoid local import raising exception in text encoder
2021-01-10  Daniele VarrazzoAdded C implementation of binary copy load
2021-01-10  Daniele VarrazzoAdded C implementation of text copy load
2021-01-09  Daniele VarrazzoAdded reading row-by-row from Copy
2021-01-09  Daniele VarrazzoAdded result status in PGresult and Cursor repr
2021-01-08  Daniele VarrazzoFurther C code streamlining
2021-01-08  Daniele VarrazzoSome refcount care in tight loops
2021-01-08  Daniele VarrazzoAdded test to verify that the C adapters are registered...
2021-01-08  Daniele VarrazzoReturn type of fetch methods improved
2021-01-08  Daniele VarrazzoFixed executemany
2021-01-08  Daniele VarrazzoAdded Transformer.dump_sequence()
2021-01-08  Daniele VarrazzoDon't deal with the python-level connection in C adapters
2021-01-08  Daniele VarrazzoAdded C interface to Transformer.get_dumper
2021-01-08  Daniele VarrazzoOptimise dumping int to text
2021-01-08  Daniele VarrazzoAdded text copy implementation in C
2021-01-08  Daniele VarrazzoAccumulate lines into a buffer to send copy data in...
2021-01-08  Daniele VarrazzoWork around __weakref__ + __slots__ + Generics bug...
2021-01-08  Daniele VarrazzoDefine better registering, importing, subclassing adapters.
2021-01-08  Daniele VarrazzoDropped use of decorator to register builtin adapters
2021-01-08  Daniele VarrazzoAdded int4 C dumper
2021-01-08  Daniele VarrazzoAdded C float dumpers
2021-01-08  Daniele VarrazzoAdded C helper for binary copy formatting
2021-01-08  Daniele VarrazzoCreate the waiting selector only after the first wait
2021-01-08  Daniele VarrazzoCopy objects refactoring to isolate the row format...
2021-01-08  Daniele VarrazzoAdded c interface to dumpers
2021-01-08  Daniele VarrazzoGlobal replace of src -> cls params and attribs
2021-01-08  Daniele VarrazzoAdded AdaptersMap.get_loader(), get_dumper() methods
2021-01-08  Daniele VarrazzoUsing new types registration system on the C implementa...
2021-01-08  Daniele VarrazzoLoder and Dumper text/binary decorator unified as ...
2021-01-08  Daniele VarrazzoDropped unneeded assignment
2021-01-08  Daniele VarrazzoDropped format parameter from register
2021-01-08  Daniele VarrazzoAdded guard for lazy import to avoid the import statement
2021-01-08  Daniele VarrazzoAdded Loader.format and Dumper.format
2021-01-08  Daniele VarrazzoDon't convert fformat and binary_tuples to Format in...
2021-01-08  Daniele VarrazzoFixed binary copy with empty content
2021-01-08  Daniele VarrazzoDropped async/sync code duplication using high level...
2021-01-08  Daniele VarrazzoUse slots on PostgresQuery object
2021-01-08  Daniele VarrazzoFast-path in query preparation to skip expensive isinstance
2021-01-08  Daniele VarrazzoAdded slots on cursor
2021-01-06  Daniele VarrazzoAdded backer @MaterializeInc. Thank you :)
2020-12-29  Daniele VarrazzoMerge branch 'c-optimise'
2020-12-29  Daniele VarrazzoMake testable, and test, the different waiting implemen...
2020-12-29  Daniele VarrazzoAdded epoll-based wait() implementation
2020-12-29  Daniele VarrazzoMore tweaks to the Transformer C code
2020-12-29  Daniele VarrazzoTweaking generators.execute C code
2020-12-29  Daniele VarrazzoUse the C api to create memoryview objects
2020-12-29  Daniele VarrazzoUse cython type declarations for bytes too
2020-12-29  Daniele VarrazzoUse cython type declaration rather than python annotati...
2020-12-29  Daniele VarrazzoDon't use enums for libpq arguments
2020-12-29  Daniele VarrazzoAdded guard to avoid failure on __del__ of unborn conne...
2020-12-29  Daniele VarrazzoSet public module for PQerror
2020-12-28  Daniele VarrazzoModule psycopg3_c.pq_cython renamed to psycopg3_c.pq
2020-12-27  Daniele VarrazzoFixed comment after adapters refactoring
2020-12-27  Daniele VarrazzoAvoid catching exceptions for dict lookup in C
2020-12-27  Daniele VarrazzoFurther use of the C api to reduce some cython checking
2020-12-27  Daniele VarrazzoMore efficient rows loading
2020-12-27  Daniele VarrazzoAdded Transformer.load_rows()
2020-12-27  Daniele VarrazzoSome C optimisation of the Transformer object
2020-12-27  Daniele VarrazzoOptimise access to PGresult data
2020-12-27  Daniele VarrazzoInternal functions moved out of cython class
2020-12-27  Daniele VarrazzoRelease the gil around the exec/send libpq functions
2020-12-27  Daniele VarrazzoAdded guard for negative numbers in load_row
2020-12-27  Daniele VarrazzoAdded repr of several objects
2020-12-27  Daniele VarrazzoRaise a resource warning if a connection is deleted...
2020-12-26  Daniele VarrazzoAdaptation context reworked
2020-12-25  Daniele VarrazzoDropped unused Transformer attribute
2020-12-25  Daniele VarrazzoDropped tox from dev requirements
2020-12-25  Daniele VarrazzoPrepared statements management moved to a purpose class
2020-12-25  Daniele VarrazzoThe function to maintain prepared statements is no...
2020-12-25  Daniele VarrazzoDropped "unknown loader", use the text loader for every...
2020-12-25  Daniele VarrazzoImplement fetch* not in term of iter
2020-12-25  Daniele VarrazzoExclude .pyx files from sdist package
2020-12-25  Daniele VarrazzoMerge branch 'ctypes-reorganisation'
2020-12-25  Daniele VarrazzoFixed typos in cython
2020-12-25  Daniele VarrazzoDropped 'impl' alias for libpq in cython
2020-12-25  Daniele Varrazzopsycopg3_c packages moved closer to where they are...
2020-12-25  Daniele VarrazzoOther psycopg3_c.pq_cython objects split in modules
2020-12-25  Daniele VarrazzoFurther PGconn code moving and stricter declarations
2020-12-25  Daniele VarrazzoPGconn code moved to pq directory
2020-12-25  Daniele VarrazzoDropped __init__ file from types, which is not a package
2020-12-25  Daniele VarrazzoUse a strict PGconn type on Escaping.__init__ definitio...
2020-12-25  Daniele VarrazzoEscaping code moved to psycopg3_c/pq dir
2020-12-25  Daniele Varrazzolibpq cython declarations moved to psycopg3_c/pq package
2020-12-25  Daniele VarrazzoMerge branch 'prepared-statements'
2020-12-25  Daniele VarrazzoAdded note to remember to review preparation in executemany
2020-12-25  Daniele VarrazzoAdded documentation for prepared statements
next