We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c52adc2 commit db2dc19Copy full SHA for db2dc19
1 file changed
vector/src/main/java/org/apache/arrow/vector/complex/AbstractStructVector.java
@@ -64,11 +64,11 @@ public abstract class AbstractStructVector extends AbstractContainerVector {
64
65
/** Policy to determine how to react when duplicate columns are encountered. */
66
public enum ConflictPolicy {
67
- // Ignore the conflict and append the field. This is the default behaviour
+ // Ignore the conflict and append the field.
68
CONFLICT_APPEND,
69
// Keep the existing field and ignore the newer one.
70
CONFLICT_IGNORE,
71
- // Replace the existing field with the newer one.
+ // Replace the existing field with the newer one. This is the default behaviour
72
CONFLICT_REPLACE,
73
// Refuse the new field and error out.
74
CONFLICT_ERROR
0 commit comments