public void setBoundDate(Column storeColumn, BoundType type, Date value) {
try {
Timestamp timestamp = new Timestamp(value.getTime());
ndbIndexScanOperation.setBoundDatetime(storeColumn.getName(), convertBoundType(type), timestamp);
} catch (NdbApiException ndbApiException) {
throw new ClusterJDatastoreException(local.message("ERR_Datastore"),
ndbApiException);
}
}