public void releaseSavePoint( String savepointName, Object kindOfSavepoint ) throws StandardException
{
TransactionController tc = getTransactionExecute();
if (tc != null)
{
currentSavepointLevel = tc.releaseSavePoint( savepointName, kindOfSavepoint );
//after a release of a savepoint, we need to go through our temp tables list.
if (allDeclaredGlobalTempTables != null)
tempTablesReleaseSavepointLevels();
}
}