lishuxu commented on code in PR #281:
URL: https://github.com/apache/iceberg-cpp/pull/281#discussion_r2512548844
##########
src/iceberg/catalog.h:
##########
@@ -223,6 +247,16 @@ class ICEBERG_EXPORT Catalog {
///
/// \return the Transaction to create the table
virtual std::unique_ptr<Transaction> StageCreate() = 0;
+
+ /// \brief Starts a transaction to replace the table
+ ///
+ /// \return the Transaction to replace the table
+ virtual std::unique_ptr<Transaction> StageReplace() = 0;
+
+ /// \brief Starts a transaction to create or replace the table
+ ///
+ /// \return the Transaction to create or replace the table
+ virtual std::unique_ptr<Transaction> StageCreateOrReplace() = 0;
Review Comment:
Refer to (https://github.com/apache/iceberg-python/issues/281), the replace
table API is currently not planned to be supported.
--
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]