use of io.crate.planner.node.management.ExplainPlan in project crate by crate.
the class ExplainPlannerTest method testExplain.
@Test
public void testExplain() throws Exception {
for (String statement : EXPLAIN_TEST_STATEMENTS) {
ExplainPlan plan = e.plan("explain " + statement);
assertNotNull(plan);
assertNotNull(plan.subPlan());
}
}
Aggregations