Skip to content

Commit ea1f3f4

Browse files
committed
compute: drop a migration-plan label from the join keying doc
The doc named the migration plan's node for the borrowed-push pattern. State the property instead, which is what a caller needs to know.
1 parent c45cadd commit ea1f3f4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/compute/src/render/join/linear_join.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -561,9 +561,9 @@ where
561561
/// Keys a row-formatted join input stream into columnar `((key, value), t, d)`
562562
/// updates, splitting off key-evaluation errors into a separate stream.
563563
///
564-
/// The key and value are pushed borrowed into a `ColumnBuilder` (C1's
565-
/// zero-allocation pattern: no owned `Row` per record on the ok path); the error
566-
/// path owns time and diff. Shared by the `Vec` arm of [`arrange_join_input`]
564+
/// The key and value are pushed borrowed into a `ColumnBuilder`, so the ok path
565+
/// materializes no owned `Row` per record. The error path owns time and diff.
566+
/// Shared by the `Vec` arm of [`arrange_join_input`]
567567
/// (source edge) and by [`arrange_join_collection`] (the intra-operator
568568
/// accumulator), both of which key a `Vec`-formatted stream.
569569
fn key_join_input_vec<'s, T>(

0 commit comments

Comments
 (0)