public PrestoSessionProperties()

in paimon-presto-common/src/main/java/org/apache/paimon/presto/PrestoSessionProperties.java [44:63]


    public PrestoSessionProperties(PaimonConfig config) {
        sessionProperties =
                ImmutableList.of(
                        booleanProperty(
                                QUERY_PUSHDOWN_ENABLED,
                                "Enable paimon query pushdown",
                                config.isPaimonPushdownEnabled(),
                                false),
                        booleanProperty(
                                PARTITION_PRUNE_ENABLED,
                                "Enable paimon query partition prune",
                                config.isPaimonPartitionPruningEnabled(),
                                false),
                        booleanProperty(
                                RANGE_FILTERS_ON_SUBSCRIPTS_ENABLED,
                                "Whether to enable pushdown of range filters on subscripts like (a[2] = 5)",
                                false,
                                false),
                        stringProperty(SCAN_VERSION, "Paimon table scan version", null, false));
    }