SnowStorm sn = new SnowStorm();
sn.setDate( new Date() );
sn.setLocation( "Dallas, TX, USA");
FullTextSession fts2 = Search.createFullTextSession( getSessionFactories()[1].openSession( ) );
QueryParser parser = new QueryParser("id", new StopAnalyzer() );
List result = fts2.createFullTextQuery( parser.parse( "location:texas" ) ).list();
assertEquals( "No copy yet, fresh index expected", 0, result.size() );
s1.persist( sn );
s1.flush(); //we don' commit so we need to flush manually