cgivre commented on code in PR #2909: URL: https://github.com/apache/drill/pull/2909#discussion_r1582375084
########## exec/vector/src/main/java/org/apache/drill/exec/record/metadata/MapBuilder.java: ########## @@ -185,6 +192,26 @@ public MapBuilder resumeMap() { return (MapBuilder) parent; } + /** + * Depending on whether the parent is a schema builder or map builder + * we resume appropriately. + */ + @Override + public void resume() { + if (Objects.isNull(parent)) Review Comment: I just built Drill using the following command: ```sh mvn clean install -DskipTests ``` When I did that, I was getting the same error as on GitHub. After adding the braces as described above, it built without issues. With that said, I think you can do just run the check style with: ```sh mvn checkstyle:checkstyle ``` -- 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...@drill.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org