Skip to content

Commit 622f2ca

Browse files
committed
1
1 parent 085b836 commit 622f2ca

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/iceberg/transaction.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,6 @@ class ICEBERG_EXPORT Transaction : public std::enable_shared_from_this<Transacti
7373
Status Apply(PendingUpdate& updates);
7474

7575
friend class PendingUpdate; // Need to access the Apply method.
76-
// friend class UpdateProperties;
77-
// friend class ReplaceSortOrder;
7876

7977
private:
8078
// The table that this transaction will update.

src/iceberg/update/pending_update.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class ICEBERG_EXPORT PendingUpdate : public ErrorCollector {
4949
/// \brief Return the kind of this pending update.
5050
virtual Kind kind() const = 0;
5151

52-
/// \brief Apply the pending changes and commit TO THE TRANSACTION???
52+
/// \brief Apply the pending changes and commit.
5353
///
5454
/// \return An OK status if the commit was successful, or an error:
5555
/// - ValidationFailed: if it cannot be applied to the current table metadata.

0 commit comments

Comments
 (0)