Skip to content

Commit 0f7bcad

Browse files
HeartLinkedwgtmac
andcommitted
Update src/iceberg/catalog.h
Co-authored-by: Gang Wu <[email protected]>
1 parent 0dfb013 commit 0f7bcad

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/iceberg/catalog.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,8 @@ class ICEBERG_EXPORT Catalog {
231231
/// \param identifier a table identifier
232232
/// \param schema a schema
233233
/// \return the builder to create a table or start a create/replace transaction
234-
virtual std::unique_ptr<class TableBuilder> BuildTable(
235-
const TableIdentifier& identifier, const Schema& schema) const = 0;
234+
virtual std::unique_ptr<TableBuilder> BuildTable(const TableIdentifier& identifier,
235+
const Schema& schema) const = 0;
236236
};
237237

238238
} // namespace iceberg

src/iceberg/catalog/in_memory_catalog.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ class ICEBERG_EXPORT InMemoryCatalog
9090
const TableIdentifier& identifier,
9191
const std::string& metadata_file_location) override;
9292

93-
std::unique_ptr<Catalog::TableBuilder> BuildTable(
94-
const TableIdentifier& identifier, const Schema& schema) const override;
93+
std::unique_ptr<Catalog::TableBuilder> BuildTable(const TableIdentifier& identifier,
94+
const Schema& schema) const override;
9595

9696
private:
9797
std::string catalog_name_;

0 commit comments

Comments
 (0)