8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 02:03:04 +01:00

Fixed CORE-5421: Performance degradation in FB 3.0.2 compared to FB 2.5.7.

This commit is contained in:
Dmitry Yemanov 2017-01-04 19:47:36 +03:00
parent 96af3a3638
commit 60d20db515

View File

@ -260,7 +260,7 @@ public:
bool isFiltered() const
{
return (baseSelectivity < MAXIMUM_SELECTIVITY);
return (baseIndexes || baseSelectivity < MAXIMUM_SELECTIVITY);
}
IndexedRelationships indexedRelationships;