HazelcastInstance instance = nodeFactory.newHazelcastInstance(cfg);
IMap map = instance.getMap("employee");
map.put(1, new Employee("e", 1, false, 0));
map.put(2, new Employee("e2", 1, false, 0));
try {
map.values(new SqlPredicate("invalid_sql"));
fail("Should fail because of invalid SQL!");
} catch (RuntimeException e) {
assertTrue(e.getMessage().contains("There is no suitable accessor for 'invalid_sql'"));
}
try {