Skip to content

Commit

Permalink
[oracle] Always fetch features with null goemetry unless feature rect…
Browse files Browse the repository at this point in the history
… is set

...to match behaviour of other providers
  • Loading branch information
nyalldawson committed Apr 21, 2018
1 parent dd2ff15 commit a74414c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/providers/oracle/qgsoraclefeatureiterator.cpp
Expand Up @@ -172,7 +172,13 @@ QgsOracleFeatureIterator::QgsOracleFeatureIterator( QgsOracleFeatureSource *sour
if ( !whereClause.isEmpty() )
whereClause += QStringLiteral( " AND " );

whereClause += '(';

whereClause += QgsOracleConn::databaseTypeFilter( QStringLiteral( "FEATUREREQUEST" ), mSource->mGeometryColumn, mSource->mRequestedGeomType );

if ( mFilterRect.isNull() )
whereClause += QStringLiteral( " OR %1 IS NULL" ).arg( mSource->mGeometryColumn );
whereClause += ')';
}

if ( !mSource->mSqlWhereClause.isEmpty() )
Expand Down

0 comments on commit a74414c

Please sign in to comment.