summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-06-25 08:35:37 +0200
committerAndras Timar <andras.timar@collabora.com>2020-06-26 21:16:01 +0200
commit7a236dc5dfbd367de2a83f14fad70aa36e0fd379 (patch)
tree5dd47eac6ff943d7820697480d78223f886f4048
parent2f23292ce4deedd65388ff8693134ad9070f343f (diff)
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/+/97055 Tested-by: Andras Timar <andras.timar@collabora.com> Reviewed-by: Andras Timar <andras.timar@collabora.com>
-rw-r--r--sc/source/core/tool/interpr5.cxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/sc/source/core/tool/interpr5.cxx b/sc/source/core/tool/interpr5.cxx
index 5de62ce07bfe..aefb26c920e3 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);