use of io.trino.operator.DriverYieldSignal in project trino by trinodb.
the class TestPageFunctionCompiler method project.
private Block project(PageProjection projection, Page page, SelectedPositions selectedPositions) {
Work<Block> work = projection.project(SESSION, new DriverYieldSignal(), page, selectedPositions);
assertTrue(work.process());
return work.getResult();
}
Aggregations