Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Add safeguard tests to ensure no regressions in expression compilation
(ie check that expressions are successfully compiled where expected) Add compilation support for "NOT..." type expressions
- Loading branch information
Showing
with
147 additions
and 2 deletions.
- +21 −0 python/core/qgsfeatureiterator.sip
- +1 −0 src/core/qgsfeatureiterator.cpp
- +22 −0 src/core/qgsfeatureiterator.h
- +10 −1 src/core/qgssqlexpressioncompiler.cpp
- +2 −0 src/providers/db2/qgsdb2featureiterator.cpp
- +6 −0 src/providers/mssql/qgsmssqlfeatureiterator.cpp
- +1 −0 src/providers/ogr/qgsogrfeatureiterator.cpp
- +1 −0 src/providers/postgres/qgspostgresfeatureiterator.cpp
- +1 −0 src/providers/spatialite/qgsspatialitefeatureiterator.cpp
- +24 −1 tests/src/python/providertestbase.py
- +6 −0 tests/src/python/test_provider_postgres.py
- +42 −0 tests/src/python/test_provider_shapefile.py
- +10 −0 tests/src/python/test_provider_spatialite.py