Skip to content

Commit 2613a68

Browse files
format
1 parent 8cbda38 commit 2613a68

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

src/iceberg/avro/avro_reader.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,6 @@ class AvroBatchReader::Impl {
219219
return arrow_array;
220220
}
221221

222-
223222
private:
224223
// Max number of rows in the record batch to read.
225224
int64_t batch_size_{};

src/iceberg/avro/avro_schema_util.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,7 @@ Result<::avro::NodePtr> CreateRecordNodeWithFieldIds(const ::avro::NodePtr& orig
819819
const NameMapping& name_mapping) {
820820
auto new_record_node = std::make_shared<::avro::NodeRecord>();
821821
new_record_node->setName(original_node->name());
822-
822+
823823
for (size_t i = 0; i < original_node->leaves(); ++i) {
824824
const std::string& field_name = original_node->nameAt(i);
825825
::avro::NodePtr field_node = original_node->leafAt(i);

0 commit comments

Comments
 (0)