[CP] load data retry bug
This commit is contained in:
@ -300,7 +300,8 @@ public:
|
||||
v.retry_type_ = RETRY_TYPE_NONE;
|
||||
}
|
||||
v.no_more_test_ = true;
|
||||
} else if (is_load_local(v)) {
|
||||
} else if (stmt::T_LOAD_DATA == v.result_.get_stmt_type()) {
|
||||
if (is_load_local(v)) {
|
||||
v.client_ret_ = err;
|
||||
v.retry_type_ = RETRY_TYPE_NONE;
|
||||
v.no_more_test_ = true;
|
||||
@ -312,6 +313,11 @@ public:
|
||||
v.retry_type_ = RETRY_TYPE_NONE;
|
||||
}
|
||||
v.no_more_test_ = true;
|
||||
} else {
|
||||
v.client_ret_ = err;
|
||||
v.retry_type_ = RETRY_TYPE_NONE;
|
||||
v.no_more_test_ = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user