metaEventOperation.checkAndGetFields(table, eqConditions.keySet());
List<Pair<String, byte[]>> primaryKeyPairs = metaEventOperation
.getPrimaryKeyPairList(table, eqConditions, null);
if (primaryKeyPairs == null) {
throw new NotMatchPrimaryKeyException("Not match primary key.");
}
byte[] primayKey = RowBuilder.build().genRowkey(primaryKeyPairs);
DeleteAction action = new DeleteAction(wtableName, primayKey);
if (context.isGenWholePlan()) {