// and now check also for the real index contents:
Query query = NumericFieldUtils.createNumericRangeQuery( "overriddenFieldName", 1, 6, true, true );
FullTextQuery fullTextQuery = fullTextSession
.createFullTextQuery( query, Location.class )
.setProjection( ProjectionConstants.DOCUMENT );
assertEquals( "Check for deletion on index projection", 0, fullTextQuery.list().size() );
tx.commit();
}
@TestForIssue(jiraKey = "HSEARCH-1193")