When I try to import an HTML document into Calc, if the document have the same row 10 times, everything's ok. When the document have the same row 10 000 times, Calc show just 6750 rows. If the document have the same row 100 000 times, libreoffice crash. Steps to reproduce: ---------------------TABLE HEADER-------------------- <table border=1> <caption>INDICADORES</caption> <tr> <th>Code</th> <th>Number</th> <th>Deno</th> <th>Level</th> <th>Nature</th> <th>Load</th> <th>MetricUnit</th> <th>Aprobed</th> <th>PlanifLevel</th> <th>Activated</th> <th>WayAdqui</th> <th>Parent</th> <th>Price</th> </tr> ------------------------END--------------------------- -----------------------TABLE BODY--------------------- <tr> <td style="mso-number-format:'@';">68160000014</td> <td></td> <td>FUSIBLE</td> <td>Surtido</td> <td>Equipo</td> <td>Comunicaciones</td> <td>Uno</td> <td>Aprobed</td> <td>Si</td> <td>Si</td> <td></td> <td></td> <td>0.000000</td> </tr> -----------------------END---------------------------- Step 1: Put the content betwen "--TABLE HEADER--" and "--END--" in to a file "DocHeader.txt". Put the contet betwen "--TABLE BODY--" and "--END--" in to a file "DocBody.txt". Step 2: Create a file with 10 rows "file1.xls". cat DocHeader.txt > file1.xls for ((i=0;i<10;i++)); do cat DocBody.txt >> file1.xls; done Step 3: Open the file "file1.xls" with LibreOffice-Calc. Everything's OK. Step 4: Create a file with 10 000 rows "file2.xls". cat DocHeader.txt > file2.xls for ((i=0;i<10000;i++)); do cat DocBody.txt >> file2.xls; done Step 5: Open the file "file2.xls" with LibreOffice-Calc. Just 6700 rows are show. Step 6: Create a file with 10 000 rows "file3.xls". cat DocHeader.txt > file3.xls for ((i=0;i<100000;i++)); do cat DocBody.txt >> file3.xls; done Step 7: Open the file "file3.xls" with LibreOffice-Calc. LibreOffice crash.
Could someone please tell me in wich file or files in the source code I can find the logic of this funtionallity? Or another kind of orientation that allows me to try to solve the problem.
Set "Component" to: "Spreadsheet" -> specific Calc issue Similar to Bug 64572 ?
Ok, thanks.
Yes, it seems similar to to https://bugs.freedesktop.org/show_bug.cgi?id=64572.
set Platform to: All -> affects Linux & Windows user (see Bug 64572)
Yes, this case is very similar to mine (Bug 64572). I also opened a large html files with ten speakers and saw that the file is cut off at approximately 6500 line. I confirm this bug.
Is this just a duplicate of the other bug? If so let's mark it as a dupe and just put comments on the other one
@Joel Madero: I can't confirm both this bug & Bug 64572 because I don't know how to compare that behavior. Maybe you can help kuko on Comment 1 ?
I must make some test, but the releases notes of Libreoffice 4.1.0.0 says that this bug is fixed. And reading de content, is the same I've post. *** This bug has been marked as a duplicate of bug 35756 ***
Thanks kuko, that bug got away from my sight..:) Could you also mark Bug 64572 whether it's a duplicate?