Skip to content

Commit

Permalink
X
Browse files Browse the repository at this point in the history
  • Loading branch information
andyfengHKU committed Sep 4, 2023
1 parent 16dd7fe commit 8f51962
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/graph_test/graph_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ void BaseGraphTest::validateQueryBestPlanJoinOrder(
auto catalog = getCatalog(*database);
auto statement = parser::Parser::parseQuery(query);
auto parsedQuery = (parser::RegularQuery*)statement.get();
auto boundQuery = Binder(*catalog, database->memoryManager.get(), conn->clientContext.get()).bind(*parsedQuery);
auto boundQuery = Binder(*catalog, database->memoryManager.get(), conn->clientContext.get())
.bind(*parsedQuery);
auto plan = Planner::getBestPlan(*catalog,
getStorageManager(*database)->getNodesStore().getNodesStatisticsAndDeletedIDs(),
getStorageManager(*database)->getRelsStore().getRelsStatistics(), *boundQuery);
Expand Down

0 comments on commit 8f51962

Please sign in to comment.