Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions example/demo_example.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include "iceberg/arrow/arrow_file_io.h"
#include "iceberg/avro/avro_register.h"
#include "iceberg/catalog/memory/in_memory_catalog.h"
#include "iceberg/manifest/manifest_entry.h"
#include "iceberg/parquet/parquet_register.h"
#include "iceberg/table.h"
#include "iceberg/table_scan.h"
Expand Down
2 changes: 1 addition & 1 deletion src/iceberg/table.cc
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ const std::shared_ptr<TableMetadata>& Table::metadata() const { return metadata_
const std::shared_ptr<Catalog>& Table::catalog() const { return catalog_; }

Result<std::unique_ptr<TableScanBuilder>> Table::NewScan() const {
return std::make_unique<TableScanBuilder>(metadata_, io_);
return TableScanBuilder::Make(metadata_, io_);
}

Result<std::shared_ptr<Transaction>> Table::NewTransaction() {
Expand Down
Loading
Loading