Skip to content

Commit

Permalink
fix run g.V() is error when backend is MYSQL
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaoliangzl committed Mar 28, 2022
1 parent 6e09d85 commit 17d30e6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ protected boolean sameQueryExceptKeyIN(ConditionQuery query) {
continue;
}
Object key = r.key();
if (Objects.equals(this.condition(key), query.condition(key))) {
if (!Objects.equals(this.condition(key), query.condition(key))) {
return false;
}
}
Expand Down

0 comments on commit 17d30e6

Please sign in to comment.