fix where clase when multiple features are filtered by id (fixes #11336, fixes #11408)

This commit is contained in:
Juergen E. Fischer 2014-10-15 16:57:38 +02:00
parent 8429a65a6a
commit d1e23a608a

View File

@ -511,7 +511,7 @@ QString QgsPostgresUtils::whereClause( QgsFeatureIds featureIds, const QgsField
whereClauses << whereClause( featureId, fields, conn, pkType, pkAttrs, sharedData );
}
return whereClauses.join( " AND " );
return whereClauses.join( " OR " );
}
QString QgsPostgresProvider::filterWhereClause() const