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

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

        at  12eceb1   (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.
       new  aedbd0b   Explicitly state which source level we are compiling.  
Newer versions of gij/gcj run a 1.5 VM, but default to a 1.4 source level 
compile which tricks up our build system.  This still doens't fix the case of 
running with a newer VM than compiler, but I don't see what we can do about 
that.
       new  0c8cde0   Error message has the wrong index into the paramTypes 
array.
       new  a5f1608   setObject fails to identify the correct type of 
java.lang.Byte.
       new  18cfcbf   Updated Serbian translation from Bojan Skaljac.
       new  69656dc   The previous patch to try and set a XA based Connection's 
autocommit property correctly didn't quite work.  Calling 
XAConnection.getConnection set autocommit to true even if we already had a 
transaction in progress.
       new  57eb9e4   Fix function drop calls so we end up with a clean 
database at the end of a successful test run.
       new  4319a1e   When retrieving the columns that compose a composite type 
don't retrieve system columns (like xmin/xmax/...) that you'll find if the type 
is from a table or view.  A more comprehensive rework of getProcedureColumns 
will go into HEAD.
       new  dd7439e   Fix recently added Byte type test code to work under 
JDK1.4.  It was using Byte.valueOf(byte) which is a JDK1.5 method.
       new  b2b5f52   Don't return quotes around identifiers in the results of 
DatabaseMetaData.getIndexInfo even if they would require quoting in SQL.  The 
code was making a "col = NULL" comparison which doesn't work.
       new  e5e156e   Do escape processing on batch Statements prior to 
execution.  This already worked for PreparedStatements, but not plain 
Statements.
       new  f79c540   ResultSet.updateNClob(String, Reader) goes into an 
infinite loop. It really meant to call updateNClob(int, Reader), but was 
calling itself instead.
       new  e0f123d   Updatable ResultSets did not work when updating bytea 
data and then retrieving it because we send the data to the server in binary 
format, but the ResultSet was expecting to read it in text format. So we need 
to convert the data from binary to text format before stuffing it into the 
ResultSet.
       new  c8dfd32   pt_BR translation update.
       new  12eceb1   Prepare for release of 8.2-506.

The 27 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