use of com.apple.foundationdb.record.query.plan.temp.expressions.PrimaryScanExpression in project fdb-record-layer by FoundationDB.
the class ImplementPhysicalScanRule method onMatch.
@Override
public void onMatch(@Nonnull PlannerRuleCall call) {
final PrimaryScanExpression logical = call.get(root);
call.yield(call.ref(new RecordQueryScanPlan(logical.getRecordTypes(), logical.scanComparisons(), logical.isReverse())));
}
Aggregations