[FEAT MERGE] Merge syslog user experience improvement to master

Co-authored-by: Charles0429 <xiezhenjiang@gmail.com>
Co-authored-by: tino247 <tino247@126.com>
Co-authored-by: chaser-ch <chaser.ch@antgroup.com>
This commit is contained in:
stdliu
2023-02-06 15:52:23 +08:00
committed by ob-robot
parent 1de9266dd0
commit f8c5c2647f
796 changed files with 4465 additions and 3036 deletions

View File

@ -27,7 +27,7 @@ bool ObPhyTableLocation::compare_phy_part_loc_info_asc(const ObCandiTabletLoc *&
{
bool is_less_than = false;
if (OB_ISNULL(left) || OB_ISNULL(right)) {
LOG_ERROR("phy part loc info ptr is NULL", K(left), K(right));
LOG_ERROR_RET(OB_INVALID_ARGUMENT, "phy part loc info ptr is NULL", K(left), K(right));
} else {
is_less_than = left->get_partition_location().get_partition_id()
< right->get_partition_location().get_partition_id();
@ -40,7 +40,7 @@ bool ObPhyTableLocation::compare_phy_part_loc_info_desc(const ObCandiTabletLoc *
{
bool is_larger_than = false;
if (OB_ISNULL(left) || OB_ISNULL(right)) {
LOG_ERROR("phy part loc info ptr is NULL", K(left), K(right));
LOG_ERROR_RET(OB_INVALID_ARGUMENT, "phy part loc info ptr is NULL", K(left), K(right));
} else {
is_larger_than = left->get_partition_location().get_partition_id()
> right->get_partition_location().get_partition_id();