-
Notifications
You must be signed in to change notification settings - Fork 125
Remove the deprecated RunTransaction function #544
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
Conversation
❌ Integration test FAILEDRequested by @ehsannas on commit 5c1a935
|
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.
Please add an entry to the release notes.
} // namespace firestore | ||
} // namespace firebase | ||
|
||
#endif // FIREBASE_FIRESTORE_SRC_COMMON_TRANSACTION_FUNCTION_H_ |
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.
Please fix.
the
|
* @return Either Error::kErrorOk if successful or the error code from Error | ||
* that most closely matches the failure. | ||
*/ | ||
virtual Error Apply(Transaction& transaction, std::string& error_message) = 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.
Is this a non-const reference? If so, make const or use a pointer: Transaction& transaction
* @return Either Error::kErrorOk if successful or the error code from Error | ||
* that most closely matches the failure. | ||
*/ | ||
virtual Error Apply(Transaction& transaction, std::string& error_message) = 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.
Is this a non-const reference? If so, make const or use a pointer: std::string& error_message
No description provided.