releaseSavepoint method

Future<bool> releaseSavepoint(
  1. int txnId,
  2. String name
)

Releases savepoint name in transaction txnId. Transaction stays active.

Implementation

Future<bool> releaseSavepoint(int txnId, String name) async {
  final r = await _sendRequest<BoolResponse>(
    SavepointReleaseRequest(_nextRequestId(), txnId, name),
  );
  return r.value;
}