From 4daf50a3d1ad09d1ac37ad1a8241ea678d96f4f7 Mon Sep 17 00:00:00 2001 From: Charles0429 Date: Fri, 16 Dec 2022 03:07:47 +0000 Subject: [PATCH] fix error of stop state do not retry bug --- src/share/ob_ddl_task_executor.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/share/ob_ddl_task_executor.h b/src/share/ob_ddl_task_executor.h index 2f6997766..10e427783 100644 --- a/src/share/ob_ddl_task_executor.h +++ b/src/share/ob_ddl_task_executor.h @@ -54,6 +54,7 @@ public: static bool in_ddl_retry_white_list(const int ret_code) { return is_not_master(ret_code) + || is_stop_state(ret_code) || is_not_exist(ret_code) || is_retry(ret_code) || is_timeout(ret_code)