Skip to content

Commit

Permalink
[virtual layer] Fix xFilter for null value comparisons
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo Mercier committed Dec 5, 2016
1 parent 10ae5e2 commit 95ae154
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/providers/virtual/qgsvirtuallayersqlitemodule.cpp
Expand Up @@ -619,13 +619,13 @@ int vtableFilter( sqlite3_vtab_cursor * cursor, int idxNum, const char *idxStr,
expr += "'" + str.replace( "'", "''" ) + "'";
break;
}
case SQLITE_NULL:
case SQLITE_BLOB: // comparison to blob ignored
default:
expr = "";
}
if ( !expr.isEmpty() )
{
request.setFilterExpression( expr );
expr += " is null";
break;
}
request.setFilterExpression( expr );
}
VTableCursor *c = reinterpret_cast<VTableCursor*>( cursor );
c->filter( request );
Expand Down

0 comments on commit 95ae154

Please sign in to comment.