Skip to content
Permalink
Browse files
Make QgsVectorDataProvider defaults methods more efficient
(cherry-picked from a10b8fc)
  • Loading branch information
nyalldawson committed Aug 26, 2016
1 parent 787216a commit 3716478
Showing 1 changed file with 3 additions and 2 deletions.
@@ -393,7 +393,7 @@ void QgsVectorDataProvider::uniqueValues( int index, QList<QVariant> &values, in
QgsFeature f;
QgsAttributeList keys;
keys.append( index );
QgsFeatureIterator fi = getFeatures( QgsFeatureRequest().setSubsetOfAttributes( keys ) );
QgsFeatureIterator fi = getFeatures( QgsFeatureRequest().setSubsetOfAttributes( keys ).setFlags( QgsFeatureRequest::NoGeometry ) );

QSet<QString> set;
values.clear();
@@ -461,7 +461,8 @@ void QgsVectorDataProvider::fillMinMaxCache()

QgsFeature f;
QgsAttributeList keys = mCacheMinValues.keys();
QgsFeatureIterator fi = getFeatures( QgsFeatureRequest().setSubsetOfAttributes( keys ) );
QgsFeatureIterator fi = getFeatures( QgsFeatureRequest().setSubsetOfAttributes( keys )
.setFlags( QgsFeatureRequest::NoGeometry ) );

while ( fi.nextFeature( f ) )
{

0 comments on commit 3716478

Please sign in to comment.