Skip to content

Commit a917b44

Browse files
Add a doc comment about enum dict encoding
1 parent 58b4f73 commit a917b44

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

adapter/avro/src/main/java/org/apache/arrow/adapter/avro/ArrowToAvroUtils.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -169,10 +169,10 @@ public class ArrowToAvroUtils {
169169
* may be nullable. Record types must contain at least one child field and cannot contain multiple
170170
* fields with the same name
171171
*
172-
* <p>String fields that are dictionary-encoded will be represented as an Avro enum, so long as all
173-
* the values meet the restrictions on Avro enums (non-null, valid identifiers). Other data types
174-
* that are dictionary encoded, or string fields that do not meet the avro requirements, will be output
175-
* as their decoded type.
172+
* <p>String fields that are dictionary-encoded will be represented as an Avro enum, so long as
173+
* all the values meet the restrictions on Avro enums (non-null, valid identifiers). Other data
174+
* types that are dictionary encoded, or string fields that do not meet the avro requirements,
175+
* will be output as their decoded type.
176176
*
177177
* @param arrowFields The arrow fields used to generate the Avro schema
178178
* @param typeName Name of the top level Avro record type

0 commit comments

Comments
 (0)