Skip to content

Commit 5b734f6

Browse files
committed
try to fix -Wchanges-meaning
1 parent 20d80fa commit 5b734f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/iceberg/table_metadata.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ struct ICEBERG_EXPORT TableMetadata {
8787
/// The highest assigned column ID for the table
8888
int32_t last_column_id;
8989
/// A list of schemas
90-
std::vector<std::shared_ptr<Schema>> schemas;
90+
std::vector<std::shared_ptr<iceberg::Schema>> schemas;
9191
/// ID of the table's current schema
9292
std::optional<int32_t> current_schema_id;
9393
/// A list of partition specs
@@ -122,7 +122,7 @@ struct ICEBERG_EXPORT TableMetadata {
122122
int64_t next_row_id;
123123

124124
/// \brief Get the current schema, return NotFoundError if not found
125-
Result<std::shared_ptr<Schema>> Schema() const;
125+
Result<std::shared_ptr<iceberg::Schema>> Schema() const;
126126
/// \brief Get the current schema by ID, return NotFoundError if not found
127127
Result<std::shared_ptr<iceberg::Schema>> SchemaById(
128128
const std::optional<int32_t>& schema_id) const;

0 commit comments

Comments
 (0)