Skip to content

Commit db2dc19

Browse files
committed
address comment
1 parent c52adc2 commit db2dc19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vector/src/main/java/org/apache/arrow/vector/complex/AbstractStructVector.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ public abstract class AbstractStructVector extends AbstractContainerVector {
6464

6565
/** Policy to determine how to react when duplicate columns are encountered. */
6666
public enum ConflictPolicy {
67-
// Ignore the conflict and append the field. This is the default behaviour
67+
// Ignore the conflict and append the field.
6868
CONFLICT_APPEND,
6969
// Keep the existing field and ignore the newer one.
7070
CONFLICT_IGNORE,
71-
// Replace the existing field with the newer one.
71+
// Replace the existing field with the newer one. This is the default behaviour
7272
CONFLICT_REPLACE,
7373
// Refuse the new field and error out.
7474
CONFLICT_ERROR

0 commit comments

Comments
 (0)