Skip to content

Commit 579d690

Browse files
committed
Remove override keyword from GetSchema impl
1 parent 515eb3d commit 579d690

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/iceberg/inspect/history_table.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ HistoryTable::HistoryTable(std::shared_ptr<Table> table)
3535

3636
HistoryTable::~HistoryTable() = default;
3737

38-
std::shared_ptr<Schema> HistoryTable::GetSchema() const override {
38+
std::shared_ptr<Schema> HistoryTable::GetSchema() const {
3939
return std::make_shared<Schema>(
4040
std::vector<SchemaField>{
4141
SchemaField::MakeRequired(1, "made_current_at", timestamp_tz()),

src/iceberg/inspect/snapshots_table.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ SnapshotsTable::SnapshotsTable(std::shared_ptr<Table> table)
3535

3636
SnapshotsTable::~SnapshotsTable() = default;
3737

38-
std::shared_ptr<Schema> SnapshotsTable::GetSchema() const override {
38+
std::shared_ptr<Schema> SnapshotsTable::GetSchema() const {
3939
return std::make_shared<Schema>(
4040
std::vector<SchemaField>{
4141
SchemaField::MakeRequired(1, "committed_at", timestamp_tz()),

0 commit comments

Comments
 (0)