We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cbda38 commit 2613a68Copy full SHA for 2613a68
2 files changed
src/iceberg/avro/avro_reader.cc
@@ -219,7 +219,6 @@ class AvroBatchReader::Impl {
219
return arrow_array;
220
}
221
222
-
223
private:
224
// Max number of rows in the record batch to read.
225
int64_t batch_size_{};
src/iceberg/avro/avro_schema_util.cc
@@ -819,7 +819,7 @@ Result<::avro::NodePtr> CreateRecordNodeWithFieldIds(const ::avro::NodePtr& orig
819
const NameMapping& name_mapping) {
820
auto new_record_node = std::make_shared<::avro::NodeRecord>();
821
new_record_node->setName(original_node->name());
822
+
823
for (size_t i = 0; i < original_node->leaves(); ++i) {
824
const std::string& field_name = original_node->nameAt(i);
825
::avro::NodePtr field_node = original_node->leafAt(i);
0 commit comments