axreldable commented on PR #1145: URL: https://github.com/apache/arrow-java/pull/1145#issuecomment-4470755563
Hi @John-W-Lewis , thank you for the bug-fix. Yes, we need to wait for the maintainers to add the label and trigger the other checks. In the meantime, you can build locally, for example using [Maven](https://arrow.apache.org/docs/developers/java/building.html#id2). Now, there is a format violation in `TestVectorSchemaRoot.java`. ``` mvn clean install ... [ERROR] Failed to execute goal com.diffplug.spotless:spotless-maven-plugin:3.4.0:check (spotless-check) on project arrow-vector: The following files had format violations: [ERROR] src/test/java/org/apache/arrow/vector/TestVectorSchemaRoot.java [ERROR] @@ -363,8 +363,7 @@ [ERROR] ······intVector2.setValueCount(5); [ERROR] ······intVector3.setValueCount(5); [ERROR] [ERROR] -······VectorSchemaRoot·original·= [ERROR] -··········new·VectorSchemaRoot(Arrays.asList(intVector1,·intVector2)); [ERROR] +······VectorSchemaRoot·original·=·new·VectorSchemaRoot(Arrays.asList(intVector1,·intVector2)); [ERROR] ······original.setRowCount(5); [ERROR] [ERROR] ······VectorSchemaRoot·result·=·original.addVector(1,·intVector3); [ERROR] Run 'mvn spotless:apply' to fix these violations. ``` You can fix it with the suggested command. `mvn spotless:apply` <img width="1647" height="60" alt="image" src="https://github.com/user-attachments/assets/fb83ce20-2cba-4723-afed-f06414a7eb8b" /> -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
