[libpostgresql-jdbc-java] tag REL8_4_702 created (now 034baa3)

Emmanuel Bourg ebourg-guest at moszumanska.debian.org
Mon Jan 9 10:20:52 UTC 2017


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

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

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

       new  4824b5c   Remove unused Sun specific import.
       new  5b72e98   After running the statement passed to executeUpdate, we check to see if it was a SELECT and complain because it is not a query method.  The code was not checking all of the results if it was passed a multi- statement query string.  This resulted in the surprising and silent partial execution of SELECT statements.
       new  b75079d   Add the new TRUNCATE privilege, that was added in 8.4, to the list of known table privileges.
       new  cf625c7   When a COPY operation is the first statement issued in a transaction, it was not sending the BEGIN necessary to start the transaction. Refactor the non-query BEGIN code path used in fastpath calls to a common function that copy can use as well.
       new  df9c12a   Add the partial index constraint to the FILTER_CONDITION column returned by DatabaseMetaData.getIndexInfo.
       new  6b478e9   The 8.4 release added some code to avoid re-describing a statement if we already had the type information available by copying the resolved type information from the query to the parameters.  Its goal was just to overwrite parameters without a type (unknown), but it was actually overwriting all types which could change the query's desired behavior.
       new  19c3c04   Fix the ORDINAL_POSITION in the DatabaseMetaData.getColumns. Previously we were returning simply pg_attribute.attnum, but that doesn't work in the presence of dropped columns because later columns don't get their attnum decremented if a preceding column is dropped.  Instead use the row_number window function for 8.4 and later servers to figure out the live column position.
       new  c33a00b   Always specify an XA error code when creating an XAException. Otherwise a transaction manager won't know what to do with the error and may have to asssume the worst.
       new  3658328   First Japanese translation of error messages.
       new  6d3d2e4   Initial Bulgarian translation.
       new  ed443d8   LOB truncation didn't allow truncating to zero length because it was improperly using the positioning length checks which don't allow a zero length.
       new  4eeb652   Protocol sync is lost when a batch statement parameter has an embedded null byte.  When the server responds with an error message, the batch error handler tries to construct the equivalent original query text with the parameters substituted in.  This conversion fails on the driver side with an IllegalArgumentException complaining about the null byte.  There isn't a catch block in place to handle that exception, so it returns all the way to the user without processing [...]
       new  bc935cb   Fix the previous fix for handling parameters with an embedded null. The code was vulnerable to a NPE because it ignored the carefully setup local variable for standardConformingStrings.
       new  ceafda2   Fix a problem using the Copy API to copy data to the server from a Reader.  After reading data out of the Reader and into a buffer, we were sending the entire buffer on to the server, not just the subset of it that was filled by the read operation.
       new  482c77d   A XA transaction should not change the autocommit setting of a Connection.  Ensure that we restore this property correctly after the XA transaction completes.
       new  ae402c2   PoolingDataSources were not picking up all of the properties that were set for them.  Notably it would not give you a SSL connection when asked.  It was copying individual properties over piecemeal and this got out of date as new properties were added to the BaseDataSource, but not added to the copying code.  Use the existing serialization code to ensure that we really do copy all of the properties over.
       new  3643805   When setNull is called with a TIME or TIMESTAMP type we cannot pass that type information on to the backend because we really don't know whether it is with or without a time zone.  For a NULL value it doesn't matter, but we can't establish a type because a later call with a non-null value using the same PreparedStatement can potentially end up using a specific type that is incorrect.
       new  b515b16   Add some more specific types to the return value for DatabaseMetaData.getTables.  Return composite types, temporary views, and temporary sequences with TABLE_TYPE values specifically for them.
       new  22c9979   Fix up the previous patch to ensure datasource parameters are set properly.  We must close the ObjectOutputStream to flush the data to the byte array.
       new  e8dff84   A previous test to ensure sane behavior in the presence of null bytes didn't work for the V2 protocol because that error happens earlier than in the V3 case.
       new  72e9a57   Updated Japanese translation.
       new  034baa3   Release 8.4-702.

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



More information about the pkg-java-commits mailing list