You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[jdbc-v2] Fixed problem with server info request. It is fetched now when timezone of the server is set. (#2191)
[jdbc-v2] Fixed null response for getIndexInfo(). Empty Result Set is returned. (#2286)
[jdbc-v2] Fixed wrong false response in DataBaseMetadata.supportsBatchUpdates(). Returns true now. Please note that
no update is supported for result sets.
[jdbc-v2] Fixed handling UUID data type in PreparedStatement. (#2327)
[jdbc-v2] Fixed unsigned integer type matching. UInt8, UInt16, UInt32, UInt64, UInt128, UInt256 are presented as short, int, long, BigInteger, BigInteger, BigInteger correspondingly. SQLType for them is OTHER because
JDBC (as well as Java) doesn't provide good mapping for unsigned integers. (#2333)
[jdbc-v2] Disallowed to call method from Statement interface on PreparedStatement instance according to the JDBC spec. (#2339)