https://bz.apache.org/bugzilla/show_bug.cgi?id=58787
--- Comment #19 from Javen O'Neal <[email protected]> --- (In reply to Mark Murphy from comment #18) > "ant test" unit tests fail before it gets to my test, so I am just running > my tests manually. Ant builds should pass if you've updated to the latest code. The build is usually green, so either you checked out the code between when dungeons checked in a breaking change and a fix, have an incomplete checkout, or one of your own changes is breaking the build. See https://builds.apache.org/job/POI/ > Now that I am thinking of it more, maybe PropertyTemplate can indeed be used > with SXSSFWorkbooks by adding an option to apply the template to just the > rows in memory, and ignoring template rows that are not in memory. Or by > adding a feature to allow applying a smaller template to a relative position > in the sheet. You could throw an error if the any cells to modify the border on are outside the current window. You could theoretically queue up modifications to any cell that is below the window and apply the changes once the row enters the access window, but we don't have a precedent for this. This would consume more RAM, which defeats the purpose of SXSSF. It's fair to have SXSSF functions mandate rows that need access are in the access window, and bow out otherwise. > I did not notice the inability to compile, probably because I > don't have something configured correctly in eclipse. I will > figure that out. I develop in Eclipse or vim and run tests on the command line. When I run tests in Eclipse, it runs additional stress tests that "ant test" doesn't run. Sometimes these extra tests fail or take extra time. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
