/** Create a partition key for any operation that knows the primary key.
* @param handler the handler that contains the values of the primary key
*/
public PartitionKey createPartitionKey(ValueHandler handler) {
// create the partition key based on the mapped table
PartitionKey result = storeTable.createPartitionKey();
// add partition key part value for each partition key field
for (NdbOpenJPADomainFieldHandlerImpl fmd: partitionKeyFieldHandlers) {
if (logger.isDetailEnabled()) logger.detail(
"Field number " + fmd.getFieldNumber()
+ " column name " + fmd.getColumnName() + " field name " + fmd.getName());