mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-04 00:06:15 -04:00
leave last attribute empty instead of first
because though fid appears to be the first field it's added in the end and has the last index. fixes #20276
This commit is contained in:
parent
59686e73d7
commit
d173b70b53
@ -763,11 +763,9 @@ QgsVectorLayer *QgsOfflineEditing::copyVectorLayer( QgsVectorLayer *layer, sqlit
|
|||||||
// NOTE: SpatiaLite provider ignores position of geometry column
|
// NOTE: SpatiaLite provider ignores position of geometry column
|
||||||
// fill gap in QgsAttributeMap if geometry column is not last (WORKAROUND)
|
// fill gap in QgsAttributeMap if geometry column is not last (WORKAROUND)
|
||||||
QgsAttributes attrs = f.attributes();
|
QgsAttributes attrs = f.attributes();
|
||||||
int column = 0;
|
|
||||||
// on GPKG newAttrs has an addition FID attribute, so we have to add a dummy in the original set
|
// on GPKG newAttrs has an addition FID attribute, so we have to add a dummy in the original set
|
||||||
if ( containerType == GPKG )
|
QgsAttributes newAttrs( containerType == GPKG ? attrs.count() + 1 : attrs.count() );
|
||||||
column++;
|
int column = 0;
|
||||||
QgsAttributes newAttrs( attrs.count() + column );
|
|
||||||
for ( int it = 0; it < attrs.count(); ++it )
|
for ( int it = 0; it < attrs.count(); ++it )
|
||||||
{
|
{
|
||||||
newAttrs[column++] = attrs.at( it );
|
newAttrs[column++] = attrs.at( it );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user