Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
SeaRise committed Mar 22, 2023
1 parent 24b7aa8 commit 5e17373
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 2 additions & 4 deletions dbms/src/Flash/Coprocessor/DAGRequest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,7 @@ class ListBasedExecutorIdGenerator
return gen_id;
}
}
throw Exception(fmt::format(
"We have failed five times to generate a unique id for list base executor, exists ids are: [{}]",
fmt::join(executor_id_set, ",")));
throw Exception(fmt::format("We have failed five times to generate a unique id for list base executor, exists ids are: [{}]", fmt::join(executor_id_set, ",")));
}

private:
Expand Down Expand Up @@ -100,7 +98,7 @@ class ListBasedExecutorIdGenerator
return fmt::format("expand_{}", current_id++);
default:
throw TiFlashException(
fmt::format("Unsupported executor in DAG request: {}", executor.DebugString()),
fmt::format("Unsupported executor in list based DAG request: {}", executor.DebugString()),
Errors::Coprocessor::Unimplemented);
}
}
Expand Down
2 changes: 0 additions & 2 deletions dbms/src/Flash/Coprocessor/DAGRequest.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ class DAGRequest
private:
void checkOrSetExecutorId();

void initOutputInfo();

public:
tipb::DAGRequest * dag_request;

Expand Down

0 comments on commit 5e17373

Please sign in to comment.