return new IndexOperationImpl(storeTable, ndbIndexOperation, this);
}
public Operation getUpdateOperation(Table storeTable) {
enlist();
TableConst ndbTable = ndbDictionary.getTable(storeTable.getName());
handleError(ndbTable, ndbDictionary);
NdbOperation ndbOperation = ndbTransaction.getNdbOperation(ndbTable);
handleError(ndbOperation, ndbTransaction);
int returnCode = ndbOperation.updateTuple();
handleError(returnCode, ndbTransaction);