Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
5e83f49e
Kaydet (Commit)
5e83f49e
authored
Haz 29, 2015
tarafından
Eike Rathke
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Resolves: tdf#31577 volatile lookup ranges must not be cached
Change-Id: Iac8574329c8c8e0bc0ac956993ccdd085372a6cc
üst
1ca05e1a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
interpr1.cxx
sc/source/core/tool/interpr1.cxx
+7
-1
No files found.
sc/source/core/tool/interpr1.cxx
Dosyayı görüntüle @
5e83f49e
...
...
@@ -8503,7 +8503,13 @@ bool ScInterpreter::LookupQueryWithCache( ScAddress & o_rResultPos,
const
ScQueryEntry
&
rEntry
=
rParam
.
GetEntry
(
0
);
bool
bColumnsMatch
=
(
rParam
.
nCol1
==
rEntry
.
nField
);
OSL_ENSURE
(
bColumnsMatch
,
"ScInterpreter::LookupQueryWithCache: columns don't match"
);
if
(
!
bColumnsMatch
)
// At least all volatile functions that generate indirect references have
// to force non-cached lookup.
/* TODO: We could further classify volatile functions into reference
* generating and not reference generating functions to have to force less
* direct lookups here. We could even further attribute volatility per
* parameter so it would affect only the lookup range parameter. */
if
(
!
bColumnsMatch
||
GetVolatileType
()
!=
NOT_VOLATILE
)
bFound
=
lcl_LookupQuery
(
o_rResultPos
,
pDok
,
rParam
,
rEntry
);
else
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment