forked from mindspore-Ecosystem/mindspore
Fix CI
This commit is contained in:
parent
270bf831a9
commit
b1ea933345
|
@ -471,8 +471,7 @@ Status DataSchema::PreLoadExceptionCheck(const nlohmann::json &js) {
|
|||
// name to column index number.
|
||||
Status DataSchema::GetColumnNameMap(std::unordered_map<std::string, int32_t> *out_column_name_map) {
|
||||
if (out_column_name_map == nullptr) {
|
||||
return Status(StatusCode::kUnexpectedError, __LINE__, __FILE__,
|
||||
"unexpected null output column name map.");
|
||||
return Status(StatusCode::kUnexpectedError, __LINE__, __FILE__, "unexpected null output column name map.");
|
||||
}
|
||||
|
||||
for (int32_t i = 0; i < col_descs_.size(); ++i) {
|
||||
|
|
Loading…
Reference in New Issue