Specifies a partition range.
Data structure
message PartitionRange {
required bytes begin = 1; // encoded as SQLVariant
required bytes end = 2; // encoded as SQLVariant
}
Parameter | Type | Required | Description |
begin | bytes | Yes | The starting key of the partition. The partition range is a left-closed right-open interval that includes the starting key. The starting key is encoded in PlainBuffer. For more information, see PlainBuffer. |
end | bytes | Yes | The ending key of the partition. The partition range is a left-closed right-open interval that excludes the ending key. The ending key is encoded in PlainBuffer. For more information, see PlainBuffer. |