lishuxu commented on code in PR #152: URL: https://github.com/apache/iceberg-cpp/pull/152#discussion_r2249508319
########## src/iceberg/catalog/in_memory_catalog.cc: ########## @@ -109,6 +109,15 @@ class ICEBERG_EXPORT InMemoryNamespace { /// ErrorKind::kNoSuchTable if the table does not exist. Status UnregisterTable(const TableIdentifier& table_ident); + /// \brief Updates the metadata location of an existing table. + /// + /// \param table_ident The fully qualified identifier of the table. + /// \param metadata_location The path to the table's metadata. + /// \return Status::OK if the table metadata location is updated; + /// Error otherwise. + Status UpdateTableMetaLocation(const TableIdentifier& table_ident, + const std::string& metadata_location); + Review Comment: Yes, this is no longer needed now. -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org