[Libreoffice-commits] core.git: Branch 'libreoffice-7-0' - sc/source
Noel Grandin (via logerrit)
logerrit at kemper.freedesktop.org
Thu Jun 25 09:54:34 UTC 2020
sc/source/core/tool/interpr5.cxx | 9 ---------
1 file changed, 9 deletions(-)
New commits:
commit e2ec8e1f3fac6fc0a426b5735ad21371c68760ae
Author: Noel Grandin <noel.grandin at collabora.co.uk>
AuthorDate: Thu Jun 25 08:35:37 2020 +0200
Commit: Xisco Fauli <xiscofauli at libreoffice.org>
CommitDate: Thu Jun 25 11:54:02 2020 +0200
Revert "tdf#133858 opening spreadsheet with large array formula takes 10 mins" (tdf#134234)
This reverts commit 9a5f2961b085ce2f23ecdf0a03d1114bacac8e2c.
Reason for revert: causes regression, see tdf#134234
Change-Id: I1cc3e6daa0e65231e8a4d7c1ae4a60cfdf106457
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97054
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>
(cherry picked from commit 6f151be2994b0e78a890c13ccdd9249f1800c6de)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97057
Reviewed-by: Xisco Fauli <xiscofauli at libreoffice.org>
diff --git a/sc/source/core/tool/interpr5.cxx b/sc/source/core/tool/interpr5.cxx
index eeb3d71c094d..685a2cfe8689 100644
--- a/sc/source/core/tool/interpr5.cxx
+++ b/sc/source/core/tool/interpr5.cxx
@@ -325,15 +325,6 @@ ScMatrixRef ScInterpreter::CreateMatrixFromDoubleRef( const FormulaToken* pToken
return nullptr;
}
- // Clamp the size of the matrix to rows which actually contain data.
- // For e.g. SUM(IF over an entire column, this can make a big difference.
- // Limit to ocEqual opcode for now, some opcodes behaviour differently if the
- // input has empty space.
- if (nTab1 == nTab2 && pCur->GetOpCode() == ocEqual)
- {
- pDok->ShrinkToDataArea(nTab1, nCol1, nRow1, nCol2, nRow2);
- }
-
SCSIZE nMatCols = static_cast<SCSIZE>(nCol2 - nCol1 + 1);
SCSIZE nMatRows = static_cast<SCSIZE>(nRow2 - nRow1 + 1);
More information about the Libreoffice-commits
mailing list