Skip to content

Commit

Permalink
fix diagram
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Oct 10, 2024
1 parent 8618673 commit c7aa11f
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions datafusion/functions-aggregate/src/min_max/min_max_bytes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -351,21 +351,21 @@ fn capacity_to_view_block_size(data_capacity: usize) -> u32 {
/// fragmentation (aka garbage).
///
/// ```text
/// ┌─────────────────────────────────┐
/// ┌─────┐ ┌────▶│Option<Vec<u8>> (["A"]) │──────────────▶ "A"
/// │ 0 │─────┘ └─────────────────────────────────┘
/// ├─────┤ ┌─────────────────────────────────┐
/// │ 1 │───────────▶│Option<Vec<u8>> (["Z"]) │───────────────▶ "Z"
/// └─────┘ └─────────────────────────────────┘ ...
/// ... ...
/// ┌─────┐ ┌────────────────────────────────┐
/// │ N-2 │ │Option<Vec<u8>> (["A"]) │────────────────▶ "A"
/// ├─────┤ └────────────────────────────────┘
/// │ N-1 │─────┐ ┌────────────────────────────────┐
/// └─────┘ └────▶│Option<Vec<u8>> (["Q"]) │────────────────▶ "Q"
/// └────────────────────────────────┘
/// ┌─────────────────────────────────┐
/// ┌─────┐ ┌────▶│Option<Vec<u8>> (["A"]) │───────────▶ "A"
/// │ 0 │──── └─────────────────────────────────┘
/// ├─────┤ ┌─────────────────────────────────┐
/// │ 1 │─────────▶│Option<Vec<u8>> (["Z"]) │───────────▶ "Z"
/// └─────┘ └─────────────────────────────────┘ ...
/// ... ...
/// ┌─────┐ ┌────────────────────────────────┐
/// │ N-2 │─────────▶│Option<Vec<u8>> (["A"]) │────────────▶ "A"
/// ├─────┤ └────────────────────────────────┘
/// │ N-1 │──── ┌────────────────────────────────┐
/// └─────┘ └────▶│Option<Vec<u8>> (["Q"]) │────────────▶ "Q"
/// └────────────────────────────────┘
///
/// min_max: Vec<Option<Vec<u8>>
/// min_max: Vec<Option<Vec<u8>>
/// ```
///
/// Note that for `StringViewArray` and `BinaryViewArray`, there are potentially
Expand Down

0 comments on commit c7aa11f

Please sign in to comment.