Skip to content

Commit a21ad0f

Browse files
committedAug 28, 2012
fix #6235
1 parent 1720575 commit a21ad0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/providers/mssql/qgsmssqlprovider.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ bool QgsMssqlProvider::nextFeature( QgsFeature& feature )
520520

521521
if ( mFidCol >= 0 )
522522
{
523-
feature.setFeatureId( mQuery.value( col ).toInt() );
523+
feature.setFeatureId( mQuery.value( col ).toLongLong() );
524524
col++;
525525
}
526526

0 commit comments

Comments
 (0)
Please sign in to comment.