| 1276 | } // anonymous namespace |
| 1277 | |
| 1278 | void applyMetadataMutations(SpanContext const& spanContext, |
| 1279 | ProxyCommitData& proxyCommitData, |
| 1280 | Arena& arena, |
| 1281 | Reference<ILogSystem> logSystem, |
| 1282 | const VectorRef<MutationRef>& mutations, |
| 1283 | LogPushData* toCommit, |
| 1284 | const std::unordered_map<EncryptCipherDomainId, Reference<BlobCipherKey>>* pCipherKeys, |
| 1285 | bool& confChange, |
| 1286 | Version version, |
| 1287 | Version popVersion, |
| 1288 | bool initialCommit) { |
| 1289 | ApplyMetadataMutationsImpl(spanContext, |
| 1290 | arena, |
| 1291 | mutations, |
| 1292 | proxyCommitData, |
| 1293 | logSystem, |
| 1294 | toCommit, |
| 1295 | pCipherKeys, |
| 1296 | confChange, |
| 1297 | version, |
| 1298 | popVersion, |
| 1299 | initialCommit) |
| 1300 | .apply(); |
| 1301 | } |
| 1302 | |
| 1303 | void applyMetadataMutations(SpanContext const& spanContext, |
| 1304 | ResolverData& resolverData, |
no test coverage detected