lingbin commented on a change in pull request #2969: Improve implementation of
Status
URL: https://github.com/apache/incubator-doris/pull/2969#discussion_r382663884
##########
File path: be/src/common/status.cpp
##########
@@ -50,18 +51,20 @@ Status::Status(const PStatus& s) : _state(nullptr) {
TStatusCode::type code = (TStatusCode::type)s.status_code();
if (code != TStatusCode::OK) {
if (s.error_msgs_size() == 0) {
- _state = assemble_state(code, Slice(), 1, Slice());
+ _state = assemble_state(code, Slice(), -1, Slice());
Review comment:
Will precise_code often use `POSIX errno` to indicate detailed error codes
in the future?
If it is, what we need to pay attention to is: In POSIX code, `1` is only
used to refer
to `EPERM`(`Operation not permitted`), and **`-1` is more general**.
In addition, the type of this precise_code is `int16_t`, a signed integer.
And what is the "serialization problem"?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]