em.clear();
query = builder.keyword().onField( "brand" ).matching( "Swatch" ).createQuery();
hibernateQuery = em.createFullTextQuery( query, Clock.class );
hibernateQuery.limitExecutionTimeTo( 1, TimeUnit.NANOSECONDS );
List result = hibernateQuery.getResultList();
System.out.println( "Result size early: " + result.size() );
assertEquals( "Test early failure, before the number of results are even fetched", 0, result.size() );
if ( result.size() == 0 ) {
//sometimes, this