Skip to content

Commit

Permalink
Add test, fix issue raised by test
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Mar 31, 2021
1 parent 587ec1f commit 410f4d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Expand Up @@ -154,7 +154,7 @@ tests:
precision: 0
}, {
input: 'intval',
aggregate: 'first_value',
aggregate: 'last_value',
delimiter: '',
name: 'intval',
type: 2,
Expand Down
1 change: 1 addition & 0 deletions src/analysis/processing/qgsalgorithmaggregate.cpp
Expand Up @@ -183,6 +183,7 @@ QVariantMap QgsAggregateAlgorithm::processAlgorithm( const QVariantMap &paramete
groupSinks.emplace_back( std::move( sink ) );
group.layer = layer;
group.firstFeature = feature;
group.lastFeature = feature;
groups[key] = group;
keys.append( key );
}
Expand Down

0 comments on commit 410f4d0

Please sign in to comment.