When I fixed the SQL Server Dialects, I came up with some utilities:
- setJdbcTimeout,
- SQLServerSnapshotIsolationConnectionProvider
- isSqlLockTimeout
which makes it very easy to tackle this kind of tests. There was no effort
on my side, I just wanted to make the PostgreSQL and MariaDB Jenkins
I've checked results and the updated test is passing on all dialects.
On Mon, May 15, 2017 at 3:25 PM, Gail Badner wrote:
> HHH-11740 is a bug that shows up on DB2 because Hibernate is using the
> wrong DDL to create a global temporary table that can be shared by multiple
> sessions; instead it
HHH-11740 is a bug that shows up on DB2 because Hibernate is using the
wrong DDL to create a global temporary table that can be shared by multiple
sessions; instead it is creating a temporary table that is visible only to
the connection that creates it.
On Friday I pushed a test case to master tha