Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix indentation
  • Loading branch information
Hugo Mercier committed Dec 2, 2016
1 parent e0e60da commit f4c99d9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/providers/virtual/qgsvirtuallayersqlitemodule.cpp
Expand Up @@ -619,11 +619,11 @@ 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 += " is null";
break;
case SQLITE_NULL:
case SQLITE_BLOB: // comparison to blob ignored
default:
expr += " is null";
break;
}
request.setFilterExpression( expr );
}
Expand Down

0 comments on commit f4c99d9

Please sign in to comment.