} catch (StandardException e) {
throw new SQLParserInternalException(e);//make specific runtime error unexpectedException
}
AkibanInformationSchema onlineAIS = schemaManager.getOnlineAIS(session);
StoreAdapter adapter = store.createAdapter(session, SchemaCache.globalSchema(onlineAIS));
CreateAsCompiler compiler = new CreateAsCompiler(server, adapter, false, onlineAIS);
DMLStatementNode dmlStmt = (DMLStatementNode) stmt;
PlanContext planContext = new PlanContext(compiler);
BasePlannable result = compiler.compile(dmlStmt, null, planContext);
Plannable plannable = result.getPlannable();
QueryContext newContext = contextIfNull(context, adapter);
getTransformCache(session, server);
runPlan(session, newContext, schemaManager, txnService, (Operator) plannable, null);