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

(cherry-picked from a74414c)
  • Loading branch information
nyalldawson committed May 3, 2018
1 parent 5709908 commit c5c22d3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/providers/oracle/qgsoraclefeatureiterator.cpp
Original file line number Diff line number Diff line change
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 c5c22d3

Please sign in to comment.