-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove CHECK and FATAL in graphd #1495
Conversation
Unit testing passed. |
1 similar comment
Unit testing passed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
Unit testing passed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
@@ -71,7 +71,8 @@ class GroupByHash { | |||
return 0; | |||
} | |||
default: { | |||
LOG(FATAL) << "Untreated value type: " << static_cast<int32_t>(col.getType()); | |||
LOG(ERROR) << "Untreated value type: " << static_cast<int32_t>(col.getType()); | |||
return 0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return 0 or other error code?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
awesome
Unit testing passed. |
relate to #1184 |
* remove CHECK in graphd * Remove FATAL in graphd * rebase upstream * fix error message and spelling mistakes Co-authored-by: dutor <440396+dutor@users.noreply.github.com>
No description provided.