Skip to content

Commit d26fb96

Browse files
author
Innocent
committed
clang format
1 parent a9ab812 commit d26fb96

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

src/iceberg/catalog/rest/rest_catalog.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,7 @@ class ICEBERG_REST_EXPORT RestCatalog : public Catalog,
111111
std::unordered_set<Endpoint> endpoints,
112112
std::unique_ptr<auth::AuthManager> auth_manager,
113113
std::shared_ptr<auth::AuthSession> catalog_session,
114-
std::shared_ptr<MetricsReporter> reporter,
115-
SnapshotMode snapshot_mode);
114+
std::shared_ptr<MetricsReporter> reporter, SnapshotMode snapshot_mode);
116115

117116
Result<std::string> LoadTableInternal(const TableIdentifier& identifier) const;
118117

@@ -132,7 +131,6 @@ class ICEBERG_REST_EXPORT RestCatalog : public Catalog,
132131
std::shared_ptr<auth::AuthSession> catalog_session_;
133132
std::shared_ptr<MetricsReporter> reporter_;
134133
SnapshotMode snapshot_mode_;
135-
136134
};
137135

138136
} // namespace iceberg::rest

src/iceberg/table_scan.cc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,8 +225,7 @@ Result<std::unique_ptr<TableScanBuilder<ScanType>>> TableScanBuilder<ScanType>::
225225
template <typename ScanType>
226226
TableScanBuilder<ScanType>::TableScanBuilder(
227227
std::shared_ptr<TableMetadata> table_metadata, std::shared_ptr<FileIO> file_io,
228-
std::shared_ptr<MetricsReporter> reporter,
229-
const std::string& table_name)
228+
std::shared_ptr<MetricsReporter> reporter, const std::string& table_name)
230229
: metadata_(std::move(table_metadata)), io_(std::move(file_io)) {
231230
context_.reporter = std::move(reporter);
232231
context_.table_name = table_name;

src/iceberg/transaction.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
#pragma once
2222

23-
#include <cstdint>
2423
#include <chrono>
24+
#include <cstdint>
2525
#include <memory>
2626
#include <optional>
2727
#include <string>

0 commit comments

Comments
 (0)