Github user zuyu commented on a diff in the pull request:
https://github.com/apache/incubator-quickstep/pull/301#discussion_r141768057
--- Diff: transaction/LockManager.cpp ---
@@ -79,22 +79,23 @@ void LockManager::run() {
const LockRequest request = incoming_requests_.popOne();
if (request.getRequestType() == RequestType::kReleaseLocks) {
CHECK(releaseAllLocks(request.getTransactionId()))
- << "Unexpected condition occured.";
-
+ << "Unexpected condition occured.";
--- End diff --
I think the original style is correct.
---