This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a change to tag REL8_2_505
in repository libpostgresql-jdbc-java.

        at  9187929   (commit)
This tag includes the following new commits:

       new  8098777   Add Serbian translation.
       new  7277193   Statement.getTime, .getDate, and .getTimestamp methods 
which are passed a Calendar object were rotating the timezone in the wrong 
direction.  Rewrite this code to use the existing TimestampUtils methods to 
match the working code in ResultSets.
       new  2be2660   Produce the timezone that we send to the server in the 
same format that we can parse.  This is important for updatable ResultSets as 
we must be able to parse the format we produce.
       new  48bcb0f   When manipulating large objects we must handle the oid as 
a Java long rather than an int so it works when the oid counter exceeds 
Integer.MAX_VALUE.  This doesn't remove the existing int API to avoid breaking 
code, but instead adds a parallel API that uses long.
       new  b752d37   Fix persistence of XA datasources.  PGObjectFactory 
wasn't aware of PGXADataSource and can't be because of the requirements for 
different build versions.  Add a new PGXADataSourceFactory to provide this 
functionality.
       new  2b25a84   The error message reports the column position incorrectly 
by using ""+i+1 which is (""+i)+1, resulting in a value of 21 instead of 3 for 
an i value of 2.
       new  12a47ef   Interval formatting didn't work for negative seconds 
values greater than -1.  It would format it as -.5, but interval input doesn't 
accept this, so write it as -0.5 instead.
       new  4ca84c0   Change DatabaseMetaData.getSearchStringEscape to always 
return "\\" instead of "\\\\".  Previously it was assuming that it would be fed 
directly into a query and it needed to escape itself for the backend's input 
parser.  This doesn't work for things like PreparedStatement parameters or 
DatabaseMetaData methods that take patterns.  Backpatch only to 8.2 because it 
is a compatability problem and this keeps the old behavior for older drivers 
and gets it right in the new ones.
       new  500932f   Allow updatable ResultSets to update arrays.  While we 
still haven't implemented updateArray, updateObject with an Array should work. 
Just need to add a mapping for Types.ARRAY for converting the Array to the 
underlying ResultSet format.
       new  e0c848a   In an error message reporting an unparseable timestamp 
value the code was trying to put the unparseable portion into the error 
message, but used the wrong variable to get the correct length.
       new  4cea038   Parse timezones that have offsets in seconds.  8.2 
servers now return this information so we must be able to handle it.
       new  a071b25   Implement ResultSet.updateArray by simply mapping it to 
updateObject.
       new  9187929   Prepare for release of 8.2-505.

The 13 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/libpostgresql-jdbc-java.git

_______________________________________________
pkg-java-commits mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

Reply via email to