dcapwell commented on code in PR #3995: URL: https://github.com/apache/cassandra/pull/3995#discussion_r2004467684
########## test/unit/org/apache/cassandra/utils/AbstractTypeGenerators.java: ########## @@ -289,19 +298,27 @@ public TypeGenBuilder() public TypeGenBuilder(TypeGenBuilder other) { maxDepth = other.maxDepth; - kinds = other.kinds == null ? null : EnumSet.copyOf(other.kinds); + kinds = other.kinds; typeKindGen = other.typeKindGen; defaultSizeGen = other.defaultSizeGen; vectorSizeGen = other.vectorSizeGen; tupleSizeGen = other.tupleSizeGen; - udtName = other.udtName; udtSizeGen = other.udtSizeGen; + compositeSizeGen = other.compositeSizeGen; primitiveGen = other.primitiveGen; + compositeElementGen = other.compositeElementGen; userTypeKeyspaceGen = other.userTypeKeyspaceGen; defaultSetKeyFunc = other.defaultSetKeyFunc; - compositeElementGen = other.compositeElementGen; - compositeSizeGen = other.compositeSizeGen; typeFilter = other.typeFilter; + udtName = other.udtName; + multiCellGen = other.multiCellGen; Review Comment: this was missing so i took the fields in object order and recreated this constructor just in case there was more; looks like it was just this one though. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: pr-unsubscr...@cassandra.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: pr-unsubscr...@cassandra.apache.org For additional commands, e-mail: pr-h...@cassandra.apache.org