* @param result an opaque object representing execution result of a query
*
* @return true if the prepared query can be initialized.
*/
private boolean postExecute(Object result) {
PreparedQueryCache cache = _em.getPreparedQueryCache();
if (cache == null) {
return false;
}
return cache.initialize(_id, result) != null;
}