| Chunk |
|---|
| Conflicting content |
|---|
connection1.createStatement();
Connection connection2 = poolingDataSource2.getConnection();
<<<<<<< HEAD
JdbcConnectionHandle handle = (JdbcConnectionHandle) connection1;
=======
JdbcConnectionHandle handle = (JdbcConnectionHandle) Proxy.getInvocationHandler(connection2);
>>>>>>> ef7eb677c3151ab64ab7d9f27c6cb4260261b87c
XAConnection xaConnection2 = (XAConnection) AbstractMockJdbcTest.getWrappedXAConnectionOf(handle.getPooledConnection());
connection2.createStatement();
|
| Solution content |
|---|
connection1.createStatement();
Connection connection2 = poolingDataSource2.getConnection();
JdbcConnectionHandle handle = (JdbcConnectionHandle) connection2;
XAConnection xaConnection2 = (XAConnection) AbstractMockJdbcTest.getWrappedXAConnectionOf(handle.getPooledConnection());
connection2.createStatement();
|
| File |
|---|
| Phase2FailureTest.java |
| Developer's decision |
|---|
| Manual |
| Kind of conflict |
|---|
| Cast expression |
| Variable |