File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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_;
You can’t perform that action at this time.
0 commit comments