* minor - setSavepoint should auto allocate connection.
This commit is contained in:
parent
2d5e73ea1e
commit
d2d443500a
|
@ -562,6 +562,9 @@ public class Trx implements VetoableChangeListener
|
|||
return setRemoteSavepoint(name);
|
||||
}
|
||||
|
||||
if (m_connection == null)
|
||||
getConnection();
|
||||
|
||||
if(m_connection != null) {
|
||||
return m_connection.setSavepoint(name);
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue