Skip to content

Commit

Permalink
remove dummy code
Browse files Browse the repository at this point in the history
Committed-by: [email protected] from Dev container
  • Loading branch information
zhanglei1949 committed Jan 2, 2025
1 parent 7d4ec56 commit 6be0401
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions flex/engines/graph_db/runtime/common/rt_any.cc
Original file line number Diff line number Diff line change
Expand Up @@ -490,13 +490,6 @@ bool RTAny::operator==(const RTAny& other) const {
return value_.vertex == other.value_.vertex;
} else if (type_ == RTAnyType::kDate32) {
return value_.i64_val == other.value_.i64_val;
}

if (type_ == RTAnyType::kI64Value && other.type_ == RTAnyType::kI32Value) {
return value_.i64_val == other.value_.i32_val;
} else if (type_ == RTAnyType::kI32Value &&
other.type_ == RTAnyType::kI64Value) {
return value_.i32_val == other.value_.i64_val;
} else if (type_ == RTAnyType::kF64Value) {
return value_.f64_val == other.value_.f64_val;
}
Expand Down

0 comments on commit 6be0401

Please sign in to comment.