bloom.setFilter((DataByteArray)t.get(0));
// Test that everything we put in passes.
Tuple t1 = tf.newTuple(1);
t1.set(0, 1);
assertTrue(bloom.exec(t1));
// A few that don't pass
for (int i = 100; i < 10; i++) {
Tuple t2 = tf.newTuple(1);
t2.set(0, i);