paimon-presto-0.236/src/main/java/org/apache/paimon/presto/PrestoSplit.java [32:43]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class PrestoSplit extends PrestoSplitBase {

    @JsonCreator
    public PrestoSplit(@JsonProperty("splitSerialized") String splitSerialized) {
        super(splitSerialized);
    }

    public static PrestoSplit fromSplit(Split split) {
        return new PrestoSplit(EncodingUtils.encodeObjectToString(split));
    }

    @Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



paimon-presto-common/src/main/java/org/apache/paimon/presto/PrestoSplit.java [33:44]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class PrestoSplit extends PrestoSplitBase {

    @JsonCreator
    public PrestoSplit(@JsonProperty("splitSerialized") String splitSerialized) {
        super(splitSerialized);
    }

    public static PrestoSplit fromSplit(Split split) {
        return new PrestoSplit(EncodingUtils.encodeObjectToString(split));
    }

    @Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



