Skip to content
This repository was archived by the owner on May 9, 2024. It is now read-only.

Commit 09e00bd

Browse files
committed
Fix segfault in the execution sequence graph build.
Signed-off-by: ienkovich <[email protected]>
1 parent 21442ff commit 09e00bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

omniscidb/QueryEngine/QueryExecutionSequence.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class QueryExecutionSequenceImpl {
7575
return;
7676
}
7777

78-
size_t vertex = node_to_vertex_.size();
78+
auto vertex = boost::add_vertex(graph_);
7979
node_to_vertex_.emplace(node, vertex);
8080

8181
for (size_t i = 0; i < node->inputCount(); ++i) {

0 commit comments

Comments
 (0)