We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5666e67 commit 9190c0aCopy full SHA for 9190c0a
src/iceberg/table.cc
@@ -87,6 +87,7 @@ Status Table::Refresh() {
87
ICEBERG_ASSIGN_OR_RAISE(auto refreshed_table, catalog_->LoadTable(identifier_));
88
if (metadata_location_ != refreshed_table->metadata_file_location()) {
89
metadata_ = std::move(refreshed_table->metadata_);
90
+ metadata_location_ = std::string(refreshed_table->metadata_file_location());
91
io_ = std::move(refreshed_table->io_);
92
metadata_cache_ = std::make_unique<TableMetadataCache>(metadata_.get());
93
}
0 commit comments