Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ pub(crate) fn validate_orderings(
/// file is scanned, the same values for A, B and C can be repeated in
/// the same sorted stream
///
///```text
/// ```text
/// ┏ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━
/// ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ┐ ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ┃
/// ┃ ┌───────────────┐ ┌──────────────┐ │
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 @@ -281,7 +281,7 @@ impl DocumentationBuilder {
///
/// The argument is rendered like below if None is passed through:
///
/// ```text
/// ```text
/// <arg_name>:
/// The expression to operate on. Can be a constant, column, or function, and any combination of operators.
/// ```
Expand Down
6 changes: 3 additions & 3 deletions datafusion/expr/src/expr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ impl From<sqlparser::ast::NullTreatment> for NullTreatment {
///
/// For example the expression `A + 1` will be represented as
///
///```text
/// ```text
/// BinaryExpr {
/// left: Expr::Column("A"),
/// op: Operator::Plus,
Expand Down Expand Up @@ -265,7 +265,7 @@ impl From<sqlparser::ast::NullTreatment> for NullTreatment {
///
/// [`ExplainFormat::Tree`]: crate::logical_plan::ExplainFormat::Tree
///
///```
/// ```
/// # use datafusion_expr::{lit, col};
/// let expr = col("c1") + lit(42);
/// assert_eq!(format!("{}", expr.human_display()), "c1 + 42");
Expand Down Expand Up @@ -301,7 +301,7 @@ impl From<sqlparser::ast::NullTreatment> for NullTreatment {
/// Rewrite an expression, replacing references to column "a" in an
/// to the literal `42`:
///
/// ```
/// ```
/// # use datafusion_common::tree_node::{Transformed, TreeNode};
/// # use datafusion_expr::{col, Expr, lit};
/// // expression a = 5 AND b = 6
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 @@ -262,7 +262,7 @@ enum OutOfMemoryMode {
///
/// group_values accumulators
///
/// ```
/// ```
///
/// For example, given a query like `COUNT(x), SUM(y) ... GROUP BY z`,
/// [`group_values`] will store the distinct values of `z`. There will
Expand Down
2 changes: 1 addition & 1 deletion datafusion/physical-plan/src/display.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ pub enum DisplayFormatType {
/// │ partition_sizes: [1] │
/// │ Parquet │
/// └───────────────────────────┘
/// ```
/// ```
TreeRender,
}

Expand Down
2 changes: 1 addition & 1 deletion datafusion/physical-plan/src/repartition/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -917,7 +917,7 @@ impl BatchPartitioner {
/// used to get 3 even streams of `RecordBatch`es
///
///
///```text
/// ```text
/// ▲ ▲ ▲
/// │ │ │
/// │ │ │
Expand Down
Loading