com.datastrato.gravitino.rel.partitions.ListPartition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
Gravitino is a high-performance, geo-distributed and federated metadata lake.
The newest version!
/*
* Copyright 2024 Datastrato Pvt Ltd.
* This software is licensed under the Apache License version 2.
*/
package com.datastrato.gravitino.rel.partitions;
import com.datastrato.gravitino.annotation.Evolving;
import com.datastrato.gravitino.rel.expressions.literals.Literal;
/**
* A list partition represents a result of list partitioning. For example, for list partition
*
*
* `PARTITION p202204_California VALUES IN (
* ("2022-04-01", "Los Angeles"),
* ("2022-04-01", "San Francisco")
* )`
*
*
* its name is "p202204_California" and lists are [["2022-04-01","Los Angeles"], ["2022-04-01", "San
* Francisco"]].
*/
@Evolving
public interface ListPartition extends Partition {
/** @return The values of the list partition. */
Literal>[][] lists();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy