private void addOps(Map<Key, List<TableOperation>> operations, Table schemaTable, Row row)
{
Key key = ((TableImpl) schemaTable).createKey(row, false);
TableOperation ops = tableAPI.getTableOperationFactory().createPut(row, Choice.NONE, true);
if (operations.containsKey(key))
{
operations.get(key).add(ops);