-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathchanges.txt
More file actions
45 lines (43 loc) · 2.25 KB
/
Copy pathchanges.txt
File metadata and controls
45 lines (43 loc) · 2.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Changes
=======
1.0 release on 2010-03-27
-------------------------
* **DEPRECATION**: Removed 2PC support documentation.
* **DEPRECATION**: Removed pg_python and pg_dotconf 'scripts'.
They are still accessible by python3 -m postgresql.bin.pg_*
* Add support for binary hstore.
* Add support for user service files.
* Implement a Copy manager for direct connection-to-connection COPY operations.
* Added db.do() method for DO-statement support(convenience method).
* Set the default client_min_messages level to WARNING.
NOTICEs are often not desired by programmers, and py-postgresql's
high verbosity further irritates that case.
* Added postgresql.project module to provide project information.
Project name, author, version, etc.
* Fixed db.tracer and pg_python's --pq-trace=
* Increased default recvsize and chunksize for improved performance.
* 'D' messages are special cased as builtins.tuples instead of
protocol.element3.Tuple
* Alter Statement.chunks() to return chunks of builtins.tuple. Being
an interface intended for speed, types.Row() impedes its performance.
* Fix handling of infinity values with timestamptz, timestamp, and date.
[Bug reported by Axel Rau.]
* Correct representation of PostgreSQL ARRAYs by properly recording
lowerbounds and upperbounds. Internally, sub-ARRAYs have their own
element lists.
* Implement a NotificationManager for managing the NOTIFYs received
by a connection. The class can manage NOTIFYs from multiple
connections, whereas the db.wait() method is tailored for single targets.
* Implement an ALock class for managing advisory locks using the
threading.Lock APIs. [Feedback from Valentine Gogichashvili]
* Implement reference symbols. Allow libraries to define symbols that
are used to create queries that inherit the original symbol's type and
execution method. ``db.prepare(db.prepare(...).first())``
* Fix handling of unix domain sockets by pg.open and driver.connect.
[Reported by twitter.com/rintavarustus]
* Fix typo/dropped parts of a raise LoadError in .lib.
[Reported by Vlad Pranskevichus]
* Fix db.tracer and pg_python's --pq-trace=
* Fix count return from .first() method. Failed to provide an empty
tuple for the rformats of the bind statement.
[Reported by dou dou]