@SuppressWarnings("unchecked")
@Override
public MutationPlan compilePlan(PhoenixStatement stmt) throws SQLException {
UpsertCompiler compiler = new UpsertCompiler(stmt);
return compiler.compile(this);
}
}
private static class ExecutableDeleteStatement extends DeleteStatement implements CompilableStatement {
private ExecutableDeleteStatement(NamedTableNode table, HintNode hint, ParseNode whereNode, List<OrderByNode> orderBy, LimitNode limit, int bindCount) {