[FEAT MERGE] [CP] transfer partition && cancel transfer partition

Co-authored-by: linqiucen <lqcgrace@outlook.com>
This commit is contained in:
maosy
2024-03-20 09:46:02 +00:00
committed by ob-robot
parent e69c06c5d4
commit 84c5698b2a
87 changed files with 7195 additions and 222 deletions

View File

@ -1185,6 +1185,18 @@ int ObResolver::resolve(IsPrepared if_prepared, const ParseNode &parse_tree, ObS
REGISTER_STMT_RESOLVER(CancelClone);
break;
}
case T_TRANSFER_PARTITION: {
REGISTER_STMT_RESOLVER(TransferPartition);
break;
}
case T_CANCEL_TRANSFER_PARTITION: {
REGISTER_STMT_RESOLVER(TransferPartition);
break;
}
case T_CANCEL_BALANCE_JOB: {
REGISTER_STMT_RESOLVER(TransferPartition);
break;
}
default: {
ret = OB_NOT_SUPPORTED;
const char *type_name = get_type_name(parse_tree.type_);