feat(replica): support multi transaction command (#634)

This commit is contained in:
adiholden 2023-01-04 09:11:30 +02:00 committed by GitHub
parent b944324bbf
commit 3065946b9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 223 additions and 106 deletions

View file

@ -19,7 +19,7 @@ using nonstd::make_unexpected;
VLOG(1) << "Error while calling " #expr; \
return exp_val.error(); \
} \
dest = exp_val.value(); \
dest = std::move(exp_val.value()); \
} while (0)
#define SET_OR_UNEXPECT(expr, dest) \