return stmt.compilePlan(this, Sequence.ValueOp.RESERVE_SEQUENCE);
}
public MutationPlan compileMutation(CompilableStatement stmt, String query) throws SQLException {
if (!stmt.getOperation().isMutation()) {
throw new ExecuteUpdateNotApplicableException(query);
}
return stmt.compilePlan(this, Sequence.ValueOp.RESERVE_SEQUENCE);
}