Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion datafusion/core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@
//! consumes it immediately as well.
//!
//! ```text
//!
//!
//! Step 3: FilterExec calls next() Step 2: ProjectionExec calls
//! on input Stream next() on input Stream
//! ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ┐
Expand Down
2 changes: 1 addition & 1 deletion datafusion/doc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ impl Default for DocSection {
/// Example:
///
/// ```rust
///
///
/// # fn main() {
/// use datafusion_doc::{DocSection, Documentation};
/// let doc_section = DocSection {
Expand Down
2 changes: 1 addition & 1 deletion datafusion/functions-aggregate-common/src/tdigest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ impl TDigest {
/// [`ScalarValue::Float64`]:
///
/// ```text
///
///
/// ┌────────┬────────┬────────┬───────┬────────┬────────┐
/// │max_size│ sum │ count │ max │ min │centroid│
/// └────────┴────────┴────────┴───────┴────────┴────────┘
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,6 @@ pub struct GroupValuesColumn<const STREAMING: bool> {
/// We don't really store the actual `group values` in `hashtable`,
/// instead we store the `group indices` pointing to values in `GroupValues`.
/// And we use [`GroupIndexView`] to represent such `group indices` in table.
///
map: HashTable<(u64, GroupIndexView)>,

/// The size of `map` in bytes
Expand Down
2 changes: 1 addition & 1 deletion datafusion/physical-plan/src/aggregates/row_hash.rs
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ impl SkipAggregationProbe {
/// # Architecture
///
/// ```text
///
///
/// Assigns a consecutive group internally stores aggregate values
/// index for each unique set for all groups
/// of group values
Expand Down
2 changes: 1 addition & 1 deletion datafusion/physical-plan/src/joins/hash_join/exec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ impl JoinLeftData {
///
///
/// ```text
///
///
/// Original build-side data Inserting build-side values into hashmap Concatenated build-side batch
/// ┌───────────────────────────┐
/// hashmap.insert(row-hash, row-idx + offset) │ idx │
Expand Down
2 changes: 1 addition & 1 deletion datafusion/physical-plan/src/joins/hash_join/stream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ impl BuildSide {
/// Expected state transitions performed by HashJoinStream are:
///
/// ```text
///
///
/// WaitBuildSide
/// │
/// ▼
Expand Down
2 changes: 1 addition & 1 deletion datafusion/physical-plan/src/sorts/cursor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ pub trait CursorValues {
/// [`CursorValues`]
///
/// ```text
///
///
/// ┌───────────────────────┐
/// │ │ ┌──────────────────────┐
/// │ ┌─────────┐ ┌─────┐ │ ─ ─ ─ ─│ Cursor<T> │
Expand Down
2 changes: 1 addition & 1 deletion datafusion/physical-plan/src/unnest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ struct UnnestingResult {
/// ```
/// Result:
/// ```text
///
///
/// ┌────────────────────────────────────────────────┬────────────────────────────────────────────────┐
/// │ unnest(i, "recursive" := CAST('t' AS BOOLEAN)) │ unnest(j, "recursive" := CAST('t' AS BOOLEAN)) │
/// │ int32 │ int32 │
Expand Down
Loading