Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Committed-by: xiaolei.zl from Dev container
  • Loading branch information
zhanglei1949 committed Oct 21, 2024
1 parent 49479f8 commit 0f23f18
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ public void testCallCypherProcedureProto() {
StoredProcedure.Argument.newBuilder()
.setParamInd(0)
.setParamName("personName")
.setValue(Common.Value.newBuilder().setStr(personNameValue).build())
.setConst(Common.Value.newBuilder().setStr(personNameValue).build())
.build());
StoredProcedure.Query query = builder.build();
{
Expand Down
13 changes: 0 additions & 13 deletions flex/storages/rt_mutable_graph/schema.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1335,19 +1335,6 @@ bool Schema::EmplacePlugins(
Schema::BUILTIN_TVSP_PLUGIN_NAME,
std::make_pair("", Schema::BUILTIN_TVSP_PLUGIN_ID));

// Emplace the built-in plugins
plugin_name_to_path_and_id_.emplace(
Schema::BUILTIN_COUNT_VERTICES_PLUGIN_NAME,
std::make_pair("", Schema::BUILTIN_COUNT_VERTICES_PLUGIN_ID));
plugin_name_to_path_and_id_.emplace(
Schema::BUILTIN_PAGERANK_PLUGIN_NAME,
std::make_pair("", Schema::BUILTIN_PAGERANK_PLUGIN_ID));
plugin_name_to_path_and_id_.emplace(
Schema::BUILTIN_K_DEGREE_NEIGHBORS_PLUGIN_NAME,
std::make_pair("", Schema::BUILTIN_K_DEGREE_NEIGHBORS_PLUGIN_ID));
plugin_name_to_path_and_id_.emplace(
Schema::BUILTIN_TVSP_PLUGIN_NAME,
std::make_pair("", Schema::BUILTIN_TVSP_PLUGIN_ID));
LOG(INFO) << "Load " << plugin_name_to_path_and_id_.size() << " plugins";
return true;
}
Expand Down

0 comments on commit 0f23f18

Please sign in to comment.