// Check floating timestamp
SoqlQuery query = new SoqlQueryBuilder()
.setWhereClause(new ConditionalExpression(ColumnUtil.getQueryName("Confirmation Vote") + "=to_fixed_timestamp('2012-6-20T07:00:00Z')"))
.build();
final List<NominationWithJoda> results = consumer.query(NOMINATION_DATA_SET, query, NominationWithJoda.LIST_TYPE);
final Set<String> names = Sets.newHashSet("Masumoto, David", "Trottenberg, Polly Ellen");
for (NominationWithJoda n: results) {
TestCase.assertTrue(names.remove(n.getName()));
TestCase.assertEquals(d, n.getNominationDate().toDate());