paimon-presto-0.236/src/main/java/org/apache/paimon/presto/PrestoComputePushdown.java [76:86]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public PlanNode optimize(
            PlanNode maxSubplan,
            ConnectorSession session,
            VariableAllocator variableAllocator,
            PlanNodeIdAllocator idAllocator) {

        if (isPaimonPushdownEnabled(session)) {
            return maxSubplan.accept(new Visitor(session, idAllocator), null);
        }
        return maxSubplan;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



paimon-presto-common/src/main/java/org/apache/paimon/presto/PrestoComputePushdown.java [112:122]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public PlanNode optimize(
            PlanNode maxSubplan,
            ConnectorSession session,
            VariableAllocator variableAllocator,
            PlanNodeIdAllocator idAllocator) {

        if (isPaimonPushdownEnabled(session)) {
            return maxSubplan.accept(new Visitor(session, idAllocator), null);
        }
        return maxSubplan;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



