From 37487a073017e27484ea1ed393d5d519ee3cbf64 Mon Sep 17 00:00:00 2001 From: codesigner Date: Fri, 2 Dec 2022 14:49:45 +0800 Subject: [PATCH] refine --- src/graph/planner/match/MatchPlanner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graph/planner/match/MatchPlanner.cpp b/src/graph/planner/match/MatchPlanner.cpp index db078d11bfd..04de484710f 100644 --- a/src/graph/planner/match/MatchPlanner.cpp +++ b/src/graph/planner/match/MatchPlanner.cpp @@ -73,7 +73,7 @@ Status MatchPlanner::connectMatchPlan(SubPlan& queryPlan, MatchClauseContext* ma auto it = matchCtx->aliasesAvailable.find(alias.first); if (it != matchCtx->aliasesAvailable.end()) { // Joined type should be same, - // If any type is kRuntime, leave the type check to runtime to check the type, + // If any type is kRuntime, leave the type check to runtime, // Primitive types (Integer, String, etc.) or composite types(List, Map etc.) // are deduced to kRuntime when cannot be deduced during planning. if (it->second != alias.second && it->second != AliasType::kRuntime &&