public void testFuzzyQuery()
{
Map<String, ColumnMapper<?>> map = new HashMap<>();
map.put("name", new ColumnMapperBoolean());
Schema mappers = new Schema(EnglishAnalyzer.class.getName(), map);
FuzzyCondition fuzzyCondition = new FuzzyCondition(0.5f, "name", "tr", 1, 2, 49, true);
Query query = fuzzyCondition.query(mappers);
Assert.assertNotNull(query);