Jenkins build is back to normal : POI ยป POI-DSL-no-scratchpad #136

2023-02-10 Thread Apache Jenkins Server
See - To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org For additional commands, e-mail: dev-h...@poi.apache.org

[Bug 66422] WordExtractor.getParagraphText() - capitalized text

2023-02-10 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=66422 --- Comment #4 from PJ Fanning --- The sample in the original description appears incorrect in that the sample code does not use getParagraphText(). I can confirm that getParagraphText() does not capitalize the text. It works a completely diff

[GitHub] [poi] gtoison closed pull request #428: Performance improvements when writing many cells with SXSSF

2023-02-10 Thread via GitHub
gtoison closed pull request #428: Performance improvements when writing many cells with SXSSF URL: https://github.com/apache/poi/pull/428 -- 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

[GitHub] [poi] gtoison commented on pull request #428: Performance improvements when writing many cells with SXSSF

2023-02-10 Thread via GitHub
gtoison commented on PR #428: URL: https://github.com/apache/poi/pull/428#issuecomment-1425902041 I've tested the snapshot build and it seems better indeed, looking forward to 5.2.4! Thank you! -- This is an automated message from the Apache Git Service. To respond to the message, plea

[GitHub] [poi] pjfanning commented on pull request #428: Performance improvements when writing many cells with SXSSF

2023-02-10 Thread via GitHub
pjfanning commented on PR #428: URL: https://github.com/apache/poi/pull/428#issuecomment-1425874890 I don't to want to merge this - can you close it? I think the existing changes are sufficient. -- This is an automated message from the Apache Git Service. To respond to the message, please

[GitHub] [poi] gtoison commented on pull request #428: Performance improvements when writing many cells with SXSSF

2023-02-10 Thread via GitHub
gtoison commented on PR #428: URL: https://github.com/apache/poi/pull/428#issuecomment-1425835852 Ah that's great! Indeed I noticed the performance problem using 5.2.3 but did not see that some improvements were made Thanks to the changes I suppose that this PR is not needed. Unless yo

[Bug 66422] WordExtractor.getParagraphText() - capitalized text

2023-02-10 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=66422 --- Comment #3 from PJ Fanning --- see https://bz.apache.org/bugzilla/show_bug.cgi?id=63576 for related issue -- You are receiving this mail because: You are the assignee for the bug. --

[Bug 66418] Performance/Scalability issue in XSSFSheet.groupRow

2023-02-10 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=66418 PJ Fanning changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 66473] speed up SXSSFCell.getColumnIndex()

2023-02-10 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=66473 PJ Fanning changed: What|Removed |Added Resolution|--- |FIXED Status|NEW

[Bug 66473] New: speed up SXSSFCell.getColumnIndex()

2023-02-10 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=66473 Bug ID: 66473 Summary: speed up SXSSFCell.getColumnIndex() Product: POI Version: 5.2.2-FINAL Hardware: All OS: All Status: NEW Severity: normal

[GitHub] [poi] pjfanning commented on pull request #428: Performance improvements when writing many cells with SXSSF

2023-02-10 Thread via GitHub
pjfanning commented on PR #428: URL: https://github.com/apache/poi/pull/428#issuecomment-1425758240 * `new SXSSFCell(this, type, column)` sets _columnIndex * getColumIndex() uses _columnIndex and only searches the row if _columnIndex is not set -- This is an automated message fro

[GitHub] [poi] gtoison opened a new pull request, #428: Performance improvements when writing many cells with SXSSF

2023-02-10 Thread via GitHub
gtoison opened a new pull request, #428: URL: https://github.com/apache/poi/pull/428 SXSSFCell.getColumnIndex() gets slow when writing thousands of columns because we linearly search through all the cells in a row. Since the column index is already known when creating a new cell we can j