pub type PbIndexColumnProperties = IndexColumnProperties;
Expand description
Alias for IndexColumnProperties
.
Aliased Type§
struct PbIndexColumnProperties {
pub is_desc: bool,
pub nulls_first: bool,
}
Fields§
§is_desc: bool
Whether the column sort in ascending(false) or descending(true) order on a forward scan.
nulls_first: bool
Does the column sort with nulls first on a forward scan?