emkornfield commented on a change in pull request #10058:
URL: https://github.com/apache/arrow/pull/10058#discussion_r614262888
##########
File path: java/README.md
##########
@@ -64,26 +64,46 @@ and arrow-format into a single JAR. Using the classifier
"shade-format-flatbuff
pom.xml will make use of this JAR, you can then exclude/resolve the original
dependency to
a version of your choosing.
+### Updating the flatbuffers generated code
+
+To update the checked-in flatbuffer generated code perform the following:
+
+```bash
+cd $ARROW_HOME
+
+# remove the existing files
+rm -rf java/format/src
+
+# regenerate from the .fbs files
+flatc --java -o java/format/src/main/java format/*.fbs
Review comment:
it is probably good to document version here?
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]