468469470471472473474475
} @SuppressWarnings("unchecked") @Override public MutationPlan compilePlan(PhoenixStatement stmt, Sequence.ValueOp seqAction) throws SQLException { CreateTableCompiler compiler = new CreateTableCompiler(stmt); return compiler.compile(this); }
357358359360361362363364
return null; } @Override public MutationPlan compilePlan() throws SQLException { CreateTableCompiler compiler = new CreateTableCompiler(PhoenixStatement.this); return compiler.compile(this); }
474475476477478479480481
430431432433434435436437
} @SuppressWarnings("unchecked") @Override public MutationPlan compilePlan(PhoenixStatement stmt) throws SQLException { CreateTableCompiler compiler = new CreateTableCompiler(stmt); return compiler.compile(this); }