Navigation Menu

Skip to content

Commit

Permalink
Make QgsVectorDataProvider defaults methods more efficient
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Aug 23, 2016
1 parent 5ac34ce commit a10b8fc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/core/qgsvectordataprovider.cpp
Expand Up @@ -390,7 +390,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();
Expand Down Expand Up @@ -458,7 +458,8 @@ void QgsVectorDataProvider::fillMinMaxCache() const

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 ) )
{
Expand Down

0 comments on commit a10b8fc

Please sign in to comment.