evindj commented on code in PR #701:
URL: https://github.com/apache/iceberg-cpp/pull/701#discussion_r3676775655


##########
src/iceberg/table.cc:
##########
@@ -219,7 +255,8 @@ Result<std::shared_ptr<UpdateLocation>> 
Table::NewUpdateLocation() {
 Result<std::shared_ptr<FastAppend>> Table::NewFastAppend() {
   ICEBERG_ASSIGN_OR_RAISE(
       auto ctx, TransactionContext::Make(shared_from_this(), 
TransactionKind::kUpdate));
-  return FastAppend::Make(name().name, std::move(ctx));
+  ICEBERG_ASSIGN_OR_RAISE(auto op, FastAppend::Make(name().name, 
std::move(ctx)));

Review Comment:
   possible merge conflicts stuff I will have a look.



-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to