8000 [PREGEL] Split Graph.h, make PregelShard its own struct by markuspf · Pull Request #17963 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

[PREGEL] Split Graph.h, make PregelShard its own struct #17963

New issue < 8000 details-dialog class="Box Box--overlay d-flex flex-column anim-fade-in fast overflow-auto" aria-label="Sign up for GitHub">

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Feb 6, 2023
Prev Previous commit
Next Next commit
Fix some complaints of the MSVC compiler
  • Loading branch information
Markus Pfeiffer committed Feb 6, 2023
commit 03ee368baa5ff116522a18ac5db53553ab623296
2 changes: 1 addition & 1 deletion arangod/Pregel/Worker/Worker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ auto Worker<V, E, M>::aqlResult(bool withId) const -> PregelResults {
for (; it.hasMore(); ++it) {
Vertex<V, E> const* vertexEntry = *it;

TRI_ASSERT(vertexEntry->shard() < _config.globalShardIDs().size());
TRI_ASSERT(vertexEntry->shard().value < _config.globalShardIDs().size());
ShardID const& shardId = _config.globalShardID(vertexEntry->shard());

results.openObject(/*unindexed*/ true);
Expand Down
0