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
// Rollback savepointconstsavepoint=awaitclient.database('database_1').savepoint();awaitsavepoint.rollback({desc: 'Changes no more necessary'});
// Why was savepoint rolled back?constsavepoint=awaitclient.database('database_1').savepoint({lookAhead: true});console.log(savepoint.rollbackDesc());// 'Changes no more necessary'