mbaedke commented on code in PR #1314: URL: https://github.com/apache/jackrabbit-oak/pull/1314#discussion_r1499134958
########## oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/util/Utils.java: ########## @@ -274,6 +278,73 @@ private static String diagsForEntry(Map.Entry<String, PropertyStats> member) { } } + /** + * @return cluster if from first revision found in op, {@code -1} otherwise + */ + public static int extractClusterId(UpdateOp op) { + for (Key key : op.getChanges().keySet()) { + if (key.getRevision() != null) { + return key.getRevision().getClusterId(); + } + } + return -1; + } + + /** + * Produce an {@link UpdateOp} suitable for shrinking branch revision entries for given property in {@link Document}, {@code null} otherwise. + * + * @param doc document to inspect for repeated branch commits + * @param propertName property to check for Review Comment: Make it @param propertyName, please. -- 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: dev-unsubscr...@jackrabbit.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org