releaseSavepoint method
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;
}