Daniele Varrazzo
e1b3c7b940
Fixed Inet constructor.
2010-02-14 00:35:48 +01:00
Daniele Varrazzo
0dbe068df4
Stop the loop variable used to create __all__ leaking in the module.
2010-02-14 00:35:47 +01:00
Federico Di Gregorio
0089201ba2
Binary was not imported from _psycopg; now it is
2010-02-13 00:52:36 +01:00
Federico Di Gregorio
a9673f31d6
SQL_IN adapter is now automatically registered
2010-02-13 00:40:29 +01:00
Federico Di Gregorio
3b4c0443e4
Removed debug logging calls
2010-02-13 00:15:39 +01:00
Federico Di Gregorio
611606d532
Changes license to LGPL3 + OpenSSL exception on all source files
2010-02-12 23:34:53 +01:00
Federico Di Gregorio
e5bed4993b
Fixed register_tstz_w_secs() error
2010-02-10 18:16:00 +01:00
Federico Di Gregorio
bcc836c661
Now adapt() errors include the type name
2009-11-25 11:51:54 +01:00
Federico Di Gregorio
d40a5321f2
Fixed test broken by float precision fix
2009-11-25 10:38:31 +01:00
Federico Di Gregorio
7b730f3935
Fixed float loss of precision
2009-11-09 09:17:05 +01:00
Federico Di Gregorio
9bd771cda0
Preparing release 2.0.13
2009-10-04 12:53:42 +02:00
Federico Di Gregorio
9670c9eddc
Enabled linking to static libpq
2009-10-04 12:43:30 +02:00
Federico Di Gregorio
390a9c2451
Added support for UUID arrays
2009-10-04 12:34:02 +02:00
Federico Di Gregorio
7022269b3d
Fixed a deadlock when using the same connection from multiple threads
2009-10-04 12:02:02 +02:00
Federico Di Gregorio
0fc94be496
Preparing release 2.0.12
2009-08-09 17:22:18 +02:00
Federico Di Gregorio
3a6911216b
Fixed problem with large writes in large objects code
2009-08-09 17:05:16 +02:00
Federico Di Gregorio
a2af059e6c
Fixed PostgreSQL version detection
2009-08-09 16:28:27 +02:00
Federico Di Gregorio
29d00f56f6
Fix for retry on serialization errors for ZPsycopgDA
2009-08-09 16:22:43 +02:00
Federico Di Gregorio
36aff2f73d
Implemented connection.reset()
2009-08-09 16:19:08 +02:00
Federico Di Gregorio
4c3e2ad94b
Fixed problem with lots of columns in COPY operations
2009-08-09 15:13:42 +02:00
Federico Di Gregorio
e5a696ad58
Fixed version check in ZPsycopgDA
2009-08-09 14:53:41 +02:00
Federico Di Gregorio
091102a919
Preparing release 2.0.11
2009-05-09 14:52:16 +02:00
Federico Di Gregorio
e1fae0fcac
Fixed bug in RealDictCursor when prefetching
2009-05-09 14:44:59 +02:00
Federico Di Gregorio
3935c019fe
Fixed error in fetchXXX methods
2009-05-09 14:28:40 +02:00
Federico Di Gregorio
06eb574cec
Applied DictRow "diet" patch
2009-05-09 10:19:15 +02:00
Federico Di Gregorio
5e3fa15091
Better detection of PostgreSQL version
2009-04-21 00:38:09 +02:00
Federico Di Gregorio
f68d828f6b
Release 2.0.10
2009-04-20 20:37:59 +02:00
Federico Di Gregorio
85fdc828e7
Fix to double free segfault in cursor
2009-04-20 20:19:55 +02:00
Federico Di Gregorio
5db66038fe
Fix to double free segfault in connection
2009-04-19 16:51:31 +02:00
Federico Di Gregorio
5dab867db4
Added get_parameter_status() implementation
2009-04-19 16:42:06 +02:00
Federico Di Gregorio
39d6d8ad11
Exposed protocol_version and server_version
2009-04-19 16:36:10 +02:00
Federico Di Gregorio
bb77a6912f
Added missing dict methods in DictRow
2009-04-19 16:25:12 +02:00
Federico Di Gregorio
16c2a8fc81
Cleaned conn_notice_callback() to run without the GIL
2009-04-04 19:17:40 +02:00
Federico Di Gregorio
8e54f7dcce
Fixed test_dates failures in older version of Python
2009-04-01 20:52:58 +02:00
Federico Di Gregorio
e8ef973ddf
Fixed lobject test failures
2009-04-01 20:49:00 +02:00
Federico Di Gregorio
0b0639dae5
Fixed error when adapt()ing None
2009-03-09 21:45:49 +01:00
Federico Di Gregorio
1daf300ca3
Support for seconds in time zone offsets
2009-03-02 11:07:17 +01:00
Federico Di Gregorio
5b04203c9f
Fixed error in register_type()
2009-03-02 10:59:52 +01:00
Federico Di Gregorio
a3ce636be0
Fixed error in register_type()
2009-03-02 10:56:53 +01:00
Federico Di Gregorio
4077711050
More cross-platform build fixes
2009-03-02 09:19:23 +01:00
Federico Di Gregorio
5c0cfa86bf
isinf() for Solaris
2009-02-27 11:02:45 +01:00
Federico Di Gregorio
71c7825b9c
Release 2.0.9
2009-02-23 21:39:47 +01:00
James Henstridge
9067bde803
* psycopg/utils.c (psycopg_escape_string): same here.
...
* psycopg/adapter_binary.c (binary_escape): simplify PostgreSQL
version check.
* setup.py (psycopg_build_ext.finalize_options): use a single
define of the PostgreSQL version in a form that can easily be used
by #ifdefs.
2009-02-17 16:00:52 +09:00
James Henstridge
2a94dfae47
* tests/test_dates.py (DatetimeTests, mxDateTimeTests): full test
...
coverage for datetime and time strings with and without time zone
information.
* psycopg/typecast_datetime.c (typecast_PYDATETIME_cast): adjust
to handle the changes in typecast_parse_time.
(typecast_PYTIME_cast): add support for time zone aware time
values.
* psycopg/typecast_mxdatetime.c (typecast_MXDATE_cast): make sure
that values with time zones are correctly processed (even though
that means ignoring the time zone value).
(typecast_MXTIME_cast): same here.
* psycopg/typecast.c (typecast_parse_time): Update method to parse
second resolution timezone offsets.
2009-02-17 15:03:33 +09:00
James Henstridge
ba8be438bb
* psycopg/typecast.c (typecast_parse_time): Fix up handling of
...
negative timezone offsets with a non-zero minutes field.
* tests/test_dates.py (DatetimeTests): Add tests for time zone
parsing. The test for HH:MM:SS time zones is disabled because we
don't currently support it.
2009-02-17 12:58:45 +09:00
Federico Di Gregorio
41dd7a1095
Compile again on modern FreeBSD
2009-02-16 10:00:34 +01:00
Federico Di Gregorio
f9fa711f03
Modified executemany() to return modified rows count
2009-02-07 18:02:14 +01:00
Federico Di Gregorio
eb25f9f154
Added adapter to handle float('inf') and float('nan')
2009-01-23 00:09:20 +01:00
Federico Di Gregorio
e22451736a
register_type() now works on connection and cursor subclasses
2009-01-22 11:02:38 +01:00
Federico Di Gregorio
aeb5080208
Fixed isready() not throwing exception on error
2009-01-10 18:48:08 +01:00
Federico Di Gregorio
5480cf5332
Fixed memory leak in lobject
2008-12-04 16:58:05 +01:00
Federico Di Gregorio
5c982d90f0
Unified string quoting
2008-11-25 19:18:17 +01:00
Federico Di Gregorio
b9157c8ba1
Merged changed by JH from head
2008-09-24 01:29:20 +02:00
Federico Di Gregorio
4c8e80038e
Added inet support
2008-09-24 01:27:52 +02:00
James Henstridge
cc2aa0a9ca
* psycopg/psycopg.h (NotSupportedError_doc): clean up
...
spelling/grammar a bit, using exception description from the PEP.
2008-09-23 17:22:37 +08:00
Federico Di Gregorio
56f6001d6d
Support for NULLs in UUID
2008-09-23 09:11:11 +02:00
Federico Di Gregorio
b92601306e
Added suppport for UUID and related test.
2008-09-19 21:25:16 +02:00
Federico Di Gregorio
758eaf23d1
Preparing release 2.0.8
2008-09-16 09:58:44 +02:00
Federico Di Gregorio
ceee4c816f
Merge from jh
2008-07-26 15:10:02 +02:00
Federico Di Gregorio
e95a4d9d2e
get_backend_pid() patch and fixes
2008-07-26 15:09:20 +02:00
James Henstridge
a2f3e4a3ac
* psycopg/lobject_type.c (lobject_setup): use
...
FORMAT_CODE_PY_SSIZE_T in Dprintf() call for 64-bit compatibility
when using Python 2.5 or later.
(lobject_dealloc): same here.
2008-07-23 16:57:10 +08:00
James Henstridge
0aec2840d8
Merge support for cyclic GC in relevant types that psycopg defines.
2008-07-23 16:50:24 +08:00
James Henstridge
e0287c0db4
* psycopg/adapter_qstring.c (qstring_traverse): add cyclic GC
...
traversal for quoted string adapters.
* psycopg/adapter_pboolean.c (pboolean_traverse): add cyclic GC
traversal for boolean adapters.
* psycopg/adapter_mxdatetime.c (mxdatetime_traverse): add cyclic
GC traversal for mxdatetime adapters.
* psycopg/adapter_datetime.c (pydatetime_traverse): add cyclic GC
traversal for datetime adapters.
2008-07-18 17:42:31 +08:00
James Henstridge
590542e973
* psycopg/adapter_binary.c (binary_traverse): add cyclic GC
...
traversal for binary adapters.
2008-07-01 11:59:25 +08:00
James Henstridge
47d2414e32
* psycopg/adapter_asis.c (asis_traverse): add cyclic GC traversal
...
for AsIs adapters.
2008-07-01 09:57:16 +08:00
James Henstridge
fd538a8b17
* psycopg/adapter_list.c (list_traverse): add cyclic GC traversal
...
for list adapters.
2008-07-01 09:34:51 +08:00
Federico Di Gregorio
a5e01ef0df
Fixed spaces in pg_config path
2008-06-28 18:34:57 +02:00
James Henstridge
26693621ef
* psycopg/cursor_type.c (cursor_setup): incref before setting
...
attributes, to make things GC-safe.
* psycopg/cursor_int.c (curs_reset): make clearing of description
and casts attributes GC-safe.
2008-05-28 17:45:37 +08:00
James Henstridge
bbd101bb7e
* psycopg/typecast.c (typecast_traverse): implement cyclic GC
...
traversal for typecasters.
2008-05-28 17:22:40 +08:00
Federico Di Gregorio
5a428642f8
COPY problem tests and partial fix
2008-05-27 17:40:19 +02:00
Federico Di Gregorio
6073193314
Fixed memory leak in executemany
2008-05-19 10:14:17 +02:00
James Henstridge
ee235478bd
* psycopg/lobject.h (lobjectObject): remove "mode" struct member,
...
since it was unused.
2008-05-06 18:12:50 +08:00
James Henstridge
9d20f5c09c
* psycopg/lobject_*.c: replace uses of the closed struct member,
...
and change the Python level attribute to a getset.
* psycopg/lobject.h (lobjectObject): remove the closed member,
since "fd < 0" gives us the same information. Reorder the struct
members for better packing.
2008-05-06 18:07:54 +08:00
James Henstridge
2046ae34fb
* psycopg/lobject*: const'ify the code.
2008-05-06 17:09:43 +08:00
James Henstridge
7d66c20edb
* tests/test_lobject.py (LargeObjectTests): add more tests,
...
including behaviour on closed lobjects and stale lobjects.
* psycopg/lobject_type.c (psyco_lobj_close): don't mark the
connection closed here because it is done by
lobject_close_locked().
* psycopg/lobject_int.c (lobject_open): mark objects as not closed
if we successfully open them.
(lobject_close_locked): mark the lobject closed here.
(lobject_export): ensure we are in a transaction, since
lo_export() issues multiple queries.
* psycopg/lobject_type.c (lobject_setup): make lobjects start closed.
2008-05-06 17:04:26 +08:00
James Henstridge
e627948a6b
* psycopg/lobject.h: don't export the lobjectType symbol.
2008-05-05 22:51:15 +08:00
Federico Di Gregorio
0319bc8cc4
Fixed build error on SUN
2008-05-05 15:55:51 +02:00
James Henstridge
938c456cee
Merge changes from psycopg2/trunk via psycopg2.r243.
2008-05-05 10:37:24 +08:00
James Henstridge
31ef9355c2
Merge psycopg2/trunk into psycopg2/branches/2_0_x r243 (which is the
...
last revision merged into trunk). Where file ID conflicts exist, but
the content was equivalent, I've picked the 2_0_x version.
2008-05-05 10:22:22 +08:00
James Henstridge
331c942800
2008-04-21 James Henstridge <james@jamesh.id.au>
...
* tests/test_quote.py (QuotingTestCase.test_unicode): If the
server encoding is not UTF8, skip the unicode test and emit a
warning.
2008-04-20 23:19:42 +00:00
James Henstridge
2f3f4c1258
2008-04-21 Jorgen Austvik <Jorgen.Austvik@sun.com>
...
* tests/*.py: use the DSN constructed in tests/__init__.py.
* tests/__init__.py: allow setting the host, port and user for the
DSN used by the tests through the environment.
2008-04-20 23:12:21 +00:00
Federico Di Gregorio
962c5a9a5f
Preparing release 2.0.7.
2008-04-14 05:23:15 +00:00
James Henstridge
23866bc35d
* psycopg/connection_type.c (connection_dealloc): free
...
connection->encoding with free() instead of PyMem_Free().
* psycopg/connection_int.c (conn_connect): use malloc() to
allocate connection->encoding instead of PyMem_Malloc(), since it
is freed in other places with free() and assigned to with
strdup().
2008-03-30 22:15:21 +00:00
James Henstridge
e848585b90
* psycopg/typecast.c (typecast_from_c): fix up some reference
...
leaks. This leak affected a bounded set of objects, so doesn't
account for any gradual leaks.
2008-03-25 23:21:00 +00:00
James Henstridge
af1478feb9
* psycopg/connection_int.c (conn_notice_callback): don't leak
...
notice messages.
2008-03-19 01:01:26 +00:00
Federico Di Gregorio
8103f44a12
Fixed test segfault due to double decref.
2008-03-17 08:13:16 +00:00
James Henstridge
cceaa7331b
* psycopg/typecast.c (typecast_parse_time): give the correct
...
return value for partially parsed time values.
* psycopg/typecast_mxdatetime.c (typecast_MXDATE_cast): return
NULL after setting DataError. Also, don't treat it as an error if
typecast_parse_time() returns 0 (as might happen if the remainder
of the string is " BC").
* psycopg/typecast_datetime.c (typecast_PYDATE_cast): return NULL
after setting DataError.
(typecast_PYDATETIME_cast): same here.
(typecast_PYTIME_cast): same here.
* tests/test_dates.py
(CommonDatetimeTestsMixin.test_parse_incomplete_date): test that
parsing incomplete date values results in DataError.
(CommonDatetimeTestsMixin.test_parse_incomplete_time): same for
times.
(CommonDatetimeTestsMixin.test_parse_incomplete_time): same for
datetimes.
2008-03-17 04:06:44 +00:00
James Henstridge
1ea0cd4980
Missed the last bit of the commit message.
2008-03-06 19:35:47 +00:00
James Henstridge
475df5ebd6
2008-03-07 Jason Erickson <jerickso@stickpeople.com>
...
* psycopg/pqpath.c (pq_raise): if PSYCOPG_EXTENSIONS is not
defined, raise OperationalError rather than
TransactionRollbackError for deadlock or serialisation errors for
protocol versions less than 3.
2008-03-06 18:41:07 +00:00
James Henstridge
89cadcb553
2008-03-07 Jason Erickson <jerickso@stickpeople.com>
...
* psycopg/psycopgmodule.c (psyco_connect): fix off by one error in
calculating the length of the DSN.
2008-03-06 16:15:41 +00:00
James Henstridge
e55e2683cf
* psycopg/pqpath.c (_pq_fetch_tuples): Don't call Python APIs
...
without holding the GIL.
2008-03-06 15:12:40 +00:00
James Henstridge
14135c1d7e
* NEWS: add some draft NEWS items for a 2.0.7 release.
2008-02-27 04:42:56 +00:00
James Henstridge
fc2b684843
* runtests.py: add a harness to run all the psycopg tests against
...
the version built by distutils.
2008-02-27 02:29:55 +00:00
James Henstridge
fe853d0261
* psycopg/typecast.c (typecast_pydatetime): make array static.
...
(typecast_mxdatetime): same here.
* psycopg/typecast_builtins.c (typecast_builtins): make array
static.
* psycopg/psycopgmodule.c: add hidden visibility to a bunch of
global variables here.
* psycopg/psycopg.h: add set QueryCanceledError and
TransactionRollbackError to hidden visibility.
2008-01-21 21:41:17 +00:00
James Henstridge
eae563ac96
* psycopg/*.[ch]: add const qualifier to various string arguments
...
to functions (typecast functions and conn_switch_isolation_level).
2008-01-21 17:34:08 +00:00
James Henstridge
9fa039326c
* setup.cfg (define): remove PSYCOPG_DISPLAY_SIZE from default
...
list of defines, as discussed on mailing list. It slows down
queries with very little benefit.
2008-01-21 05:59:03 +00:00
James Henstridge
864d107325
* psycypg/*.h: apply HIDDEN to all global variables and functions
...
that should not be exported from the module. This results in a 5%
reduction in code size and shortens the dynamic symbol table.
* psycopg/config.h: If GCC >= 4.0 is installed, define the HIDDEN
symbol to apply the "hidden" visibility attribute.
2008-01-21 05:54:01 +00:00
James Henstridge
3265dd172d
* tests/test_connection.py (ConnectionTests): add simple tests for
...
the Connection and Cursor "closed" attributes.
* psycopg/cursor_type.c (psyco_curs_get_closed): add a "closed"
attribute to cursors. It will be True if either the cursor or its
associated connection are closed. This fixes bug #164 .
2008-01-19 03:32:42 +00:00
James Henstridge
11b017fcbe
* psycopg/pqpath.c (pq_raise): remove unused arguments to
...
function, and simplify.
(pq_resolve_critical): make function static, since it isn't being
used outside of pqpath.c any more.
2008-01-19 02:16:57 +00:00
James Henstridge
abb0a6f52c
(App.ImageFile): simplify ImageFile import using patch from
...
chrism, fixing bug #198 .
2008-01-16 23:16:59 +00:00